some type fixes

This commit is contained in:
Niels 2015-02-16 23:17:28 +01:00
parent a3f52a5a04
commit 432a54e570
2 changed files with 8 additions and 4 deletions

View file

@ -3800,7 +3800,8 @@ struct hash<nlohmann::json>
inline size_t operator()(const nlohmann::json& j) const
{
// a naive hashing via the string representation
return hash<nlohmann::json::string_t>()(j.dump());
const auto& h = hash<nlohmann::json::string_t>();
return h(j.dump());
}
};
}
@ -3815,7 +3816,8 @@ no parse error occurred.
*/
inline nlohmann::json operator "" _json(const char* s, std::size_t)
{
return nlohmann::json::parse(s);
return nlohmann::json::parse(reinterpret_cast<nlohmann::json::string_t::value_type*>
(const_cast<char*>(s)));
}
#endif

View file

@ -3149,7 +3149,8 @@ struct hash<nlohmann::json>
inline size_t operator()(const nlohmann::json& j) const
{
// a naive hashing via the string representation
return hash<nlohmann::json::string_t>()(j.dump());
const auto& h = hash<nlohmann::json::string_t>();
return h(j.dump());
}
};
}
@ -3164,7 +3165,8 @@ no parse error occurred.
*/
inline nlohmann::json operator "" _json(const char* s, std::size_t)
{
return nlohmann::json::parse(s);
return nlohmann::json::parse(reinterpret_cast<nlohmann::json::string_t::value_type*>
(const_cast<char*>(s)));
}
#endif