mirror of
https://github.com/nlohmann/json.git
synced 2024-11-23 22:19:02 +08:00
✅ add test
This commit is contained in:
parent
38da5b23d9
commit
3a602db882
@ -72,6 +72,10 @@ struct ParserImpl final: public nlohmann::json_sax<json>
|
||||
|
||||
~ParserImpl() override;
|
||||
|
||||
ParserImpl()
|
||||
: float_string_copy("not set")
|
||||
{}
|
||||
|
||||
ParserImpl(const ParserImpl& other)
|
||||
: float_string_copy(other.float_string_copy)
|
||||
{}
|
||||
@ -97,7 +101,7 @@ struct ParserImpl final: public nlohmann::json_sax<json>
|
||||
return *this;
|
||||
}
|
||||
|
||||
json::string_t float_string_copy = "not set";
|
||||
json::string_t float_string_copy;
|
||||
};
|
||||
|
||||
ParserImpl::~ParserImpl() = default;
|
||||
|
Loading…
Reference in New Issue
Block a user