mirror of
https://github.com/nlohmann/json.git
synced 2025-07-24 02:21:01 +03:00
Fix -Weffc++ warnings (GNU 6.3.1)
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user