1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-25 13:41:56 +03:00

📝 completed documentation index page

This commit is contained in:
Niels Lohmann
2019-03-19 16:03:02 +01:00
parent e07e8e7912
commit 18cc7ddd62
3 changed files with 24 additions and 4 deletions

View File

@ -3990,7 +3990,7 @@ class basic_json
template<typename KeyT>
bool contains(KeyT&& key) const
{
return is_object() and m_value.object->find(std::forward<KeyT>(key)) != m_value.object->end();
return is_object() and m_value.object->find(std::forward<KeyT>(key)) != m_value.object->end();
}
/// @}