1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-28 12:02:00 +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

@ -16755,7 +16755,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();
}
/// @}