removed an unnecessary cast (fixed )

This commit is contained in:
Niels 2015-12-29 12:30:05 +01:00
parent aca6a3b373
commit 3905406f9c
3 changed files with 3 additions and 5 deletions

View file

@ -7866,8 +7866,7 @@ no parse error occurred.
*/
inline nlohmann::json operator "" _json(const char* s, std::size_t)
{
return nlohmann::json::parse(reinterpret_cast<nlohmann::json::string_t::value_type*>
(const_cast<char*>(s)));
return nlohmann::json::parse(reinterpret_cast<const nlohmann::json::string_t::value_type*>(s));
}
#endif