VS2013 doesn't allow move ops to be =default

This commit is contained in:
Billy Donahue
2019-01-21 16:42:25 -05:00
committed by Hans Johnson
parent 433107f1d9
commit 00558b38db
2 changed files with 10 additions and 2 deletions

View File

@@ -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);