change clang-format
Signed-off-by: Folling <mail@folling.io>
This commit is contained in:
parent
497f96a574
commit
f925d90d6b
33 changed files with 217 additions and 254 deletions
|
|
@ -13,18 +13,18 @@ public:
|
|||
public:
|
||||
explicit IkarusValue(Data data);
|
||||
|
||||
IkarusValue(IkarusValue const&) = default;
|
||||
IkarusValue(IkarusValue&&) noexcept = default;
|
||||
IkarusValue(IkarusValue const &) = default;
|
||||
IkarusValue(IkarusValue &&) noexcept = default;
|
||||
|
||||
IkarusValue& operator=(IkarusValue const&) = default;
|
||||
IkarusValue& operator=(IkarusValue&&) noexcept = default;
|
||||
IkarusValue & operator=(IkarusValue const &) = default;
|
||||
IkarusValue & operator=(IkarusValue &&) noexcept = default;
|
||||
|
||||
virtual ~IkarusValue() = default;
|
||||
|
||||
public:
|
||||
struct FromJsonError {};
|
||||
|
||||
[[nodiscard]] static cppbase::Result<IkarusValue *, FromJsonError> from_json(boost::json::value const& json);
|
||||
[[nodiscard]] static cppbase::Result<IkarusValue *, FromJsonError> from_json(boost::json::value const & json);
|
||||
[[nodiscard]] boost::json::value to_json() const;
|
||||
|
||||
public:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue