We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03f5de9 commit fc7cda7Copy full SHA for fc7cda7
example/archiver/archiver.h
@@ -89,6 +89,9 @@ class JsonReader {
89
static const bool IsWriter = !IsReader;
90
91
private:
92
+ JsonReader(const JsonReader&);
93
+ JsonReader& operator=(const JsonReader&);
94
+
95
void Next();
96
97
// PIMPL
@@ -131,6 +134,9 @@ class JsonWriter {
131
134
132
135
133
136
137
+ JsonWriter(const JsonWriter&);
138
+ JsonWriter& operator=(const JsonWriter&);
139
140
// PIMPL idiom
141
void* mWriter; ///< JSON writer.
142
void* mStream; ///< Stream buffer.
0 commit comments