Skip to content
Snippets Groups Projects

F remove boost rdep

Merged Timm Fitschen requested to merge f-remove-boost-rdep into dev
2 files
+ 23
5
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 2
2
@@ -137,14 +137,14 @@ public:
@@ -137,14 +137,14 @@ public:
*
*
* Also moves the `wrapped` object.
* Also moves the `wrapped` object.
*/
*/
JsonValue(JsonValue &&other) = default;
JsonValue(JsonValue &&other);
/**
/**
* Move Assigment.
* Move Assigment.
*
*
* Also moves the `wrapped` object.
* Also moves the `wrapped` object.
*/
*/
auto operator=(JsonValue &&other) -> JsonValue & = default;
auto operator=(JsonValue &&other) -> JsonValue &;
/**
/**
* Return true if the `wrapped` object is the nullptr.
* Return true if the `wrapped` object is the nullptr.
Loading