Skip to content
Snippets Groups Projects

F async execute

Merged Timm Fitschen requested to merge f-async-execute into dev
4 files
+ 8
9
Compare changes
  • Side-by-side
  • Inline

Files

+ 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