1
0
mirror of https://github.com/nlohmann/json synced 2024-11-23 20:40:08 +00:00

🏁 fix for #581

This commit is contained in:
Niels Lohmann 2017-05-13 12:27:37 +02:00
parent 978255da8c
commit 9b764ee5d6
No known key found for this signature in database
GPG Key ID: 7F3CEA63AE251B69

View File

@ -7892,21 +7892,21 @@ class basic_json
/// conversion operator (calls key())
operator typename basic_json::string_t() const
{
return proxy.key();
return proxy.key();
}
/// equal operator (calls key())
template<typename KeyType>
bool operator==(const KeyType& key) const
{
return proxy.key() == key;
return proxy.key() == key;
}
/// not equal operator (calls key())
template<typename KeyType>
bool operator!=(const KeyType& key) const
{
return proxy.key() != key;
return proxy.key() != key;
}
};
@ -7925,29 +7925,29 @@ class basic_json
/// conversion operator (calls value())
operator typename IteratorType::reference() const
{
return proxy.value();
return proxy.value();
}
/// equal operator (calls value())
template<typename ValueType>
bool operator==(const ValueType& value) const
{
return proxy.value() == value;
return proxy.value() == value;
}
/// not equal operator (calls value())
template<typename ValueType>
bool operator!=(const ValueType& value) const
{
return proxy.value() != value;
return proxy.value() != value;
}
/// assignment operator (calls value())
template<typename ValueType>
iterator_value_property<ProxyType>& operator=(const ValueType& value)
{
proxy.value() = value;
return *this;
proxy.value() = value;
return *this;
}
};
@ -9005,7 +9005,7 @@ class basic_json
{
// avoid reading too many characters
const size_t max_length = static_cast<size_t>(limit - start);
return std::string(start + offset, std::min({length, max_length - offset}));
return std::string(start + offset, std::min(length, max_length - offset));
}
private: