1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-13 20:21:48 +03:00

more test cases

This commit is contained in:
Niels
2015-02-08 15:47:40 +01:00
parent d0df796a10
commit 16b91d491e
3 changed files with 155 additions and 4 deletions

View File

@ -519,13 +519,13 @@ class basic_json
}
}
/// return the type of the object explicitly
/// return the type of the object (explicit)
inline value_t type() const noexcept
{
return m_type;
}
/// return the type of the object implicitly
/// return the type of the object (implicit)
operator value_t() const noexcept
{
return m_type;