Skip to content
Snippets Groups Projects

F remove boost rdep

Merged Timm Fitschen requested to merge f-remove-boost-rdep into dev
4 files
+ 8
9
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 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);
JsonValue(JsonValue &&other) noexcept ;
/**
/**
* Move Assigment.
* Move Assigment.
*
*
* Also moves the `wrapped` object.
* Also moves the `wrapped` object.
*/
*/
auto operator=(JsonValue &&other) -> JsonValue &;
auto operator=(JsonValue &&other) noexcept -> JsonValue &;
/**
/**
* Return true if the `wrapped` object is the nullptr.
* Return true if the `wrapped` object is the nullptr.
Loading