unimplemented functions under utils/

This commit is contained in:
Crzyrndm 2018-07-02 10:49:01 +12:00
parent 95ca51e5c8
commit 3d9e887d4a
2 changed files with 2 additions and 2 deletions

View File

@ -120,7 +120,7 @@ public:
/// <summary> /// <summary>
/// Default constructor. /// Default constructor.
/// </summary> /// </summary>
missing_number_format(); missing_number_format() = default;
/// <summary> /// <summary>
/// Default copy constructor. /// Default copy constructor.

View File

@ -41,7 +41,7 @@ variant::variant(const char *value) : variant(std::string(value))
{ {
} }
variant::variant(std::int32_t value) variant::variant(int32_t value)
: type_(type::i4), : type_(type::i4),
i4_value_(value) i4_value_(value)
{ {