Skip to content
Snippets Groups Projects

F remove boost rdep

Merged Timm Fitschen requested to merge f-remove-boost-rdep into dev
3 files
+ 24
17
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 8
2
@@ -98,6 +98,12 @@ inline auto get_env_fallback(const std::string &key, const std::string &fallback
*/
class JsonValue {
public:
/**
* Default Constructor.
*
* Creates an empty wrapper where `wrapped` is nullptr.
*/
JsonValue() : JsonValue(nullptr) {}
/**
* Constructor.
*
@@ -124,14 +130,14 @@ public:
*
* Also copies the `wrapped` object.
*/
auto operator=(const JsonValue &other) -> JsonValue & = default;
auto operator=(const JsonValue &other) -> JsonValue &;
/**
* Move Constructor.
*
* Also moves the `wrapped` object.
*/
JsonValue(JsonValue &&other);
JsonValue(JsonValue &&other) = default;
/**
* Move Assigment.
Loading