Commit 5b809b97 authored by Ted Lyngmo's avatar Ted Lyngmo

Fix -Weffc++ warnings (GNU 6.3.1)

parent 9cfb777b
......@@ -6159,6 +6159,10 @@ class basic_json
*/
class serializer
{
private:
serializer(const serializer&) = delete;
serializer& operator=(const serializer&) = delete;
public:
/*!
@param[in] s output stream to serialize to
......
......@@ -6159,6 +6159,10 @@ class basic_json
*/
class serializer
{
private:
serializer(const serializer&) = delete;
serializer& operator=(const serializer&) = delete;
public:
/*!
@param[in] s output stream to serialize to
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment