VC2015编译错误 C4579 'nlohmann::json_abi_v3_11_2::detail::static_const<nlohmann::json_abi_v3_11_2::detail::from_json_fn>::value'
现象
错误 C4579 'nlohmann::json_abi_v3_11_2::detail::static_const<nlohmann::json_abi_v3_11_2::detail::from_json_fn>::value': in-class initialization for type 'const T' is not yet implemented; static member will remain uninitialized at runtime but use in constant-expressions is supported
原因
vc2015不支持c++11语法,nlohmann::json需要使用支持c++11的编译器编译。 更换vc2022可以解决。