mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-10-12 02:36:37 +02:00
VS2013 doesn't allow move ops to be =default
This commit is contained in:

committed by
Hans Johnson

parent
433107f1d9
commit
00558b38db
@@ -659,9 +659,9 @@ private:
|
||||
public:
|
||||
Comments() = default;
|
||||
Comments(const Comments& that);
|
||||
Comments(Comments&&) = default;
|
||||
Comments(Comments&& that);
|
||||
Comments& operator=(const Comments& that);
|
||||
Comments& operator=(Comments&&) = default;
|
||||
Comments& operator=(Comments&& that);
|
||||
bool has(CommentPlacement slot) const;
|
||||
String get(CommentPlacement slot) const;
|
||||
void set(CommentPlacement slot, String s);
|
||||
|
Reference in New Issue
Block a user