Skip to content
Snippets Groups Projects

Release 0.2.0

Closed Timm Fitschen requested to merge release-0.2.0 into main
4 files
+ 8
9
Compare changes
  • Side-by-side
  • Inline

Files

@@ -137,14 +137,14 @@ public:
*
* Also moves the `wrapped` object.
*/
JsonValue(JsonValue &&other);
JsonValue(JsonValue &&other) noexcept ;
/**
* Move Assigment.
*
* 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.
Loading