Skip to content
Snippets Groups Projects

Release 0.2.0

Closed Timm Fitschen requested to merge release-0.2.0 into main
2 files
+ 23
5
Compare changes
  • Side-by-side
  • Inline

Files

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