mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
unimplemented functions under utils/
This commit is contained in:
parent
95ca51e5c8
commit
3d9e887d4a
|
@ -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.
|
||||||
|
|
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user