mirror of
https://github.com/nlohmann/json.git
synced 2025-07-13 20:21:48 +03:00
removed an unnecessary cast (fixed #162)
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user