diff --git a/src/json.hpp b/src/json.hpp index 23709788a..68ac29fcc 100644 --- a/src/json.hpp +++ b/src/json.hpp @@ -220,18 +220,18 @@ struct DecimalSeparator : std::numpunct // taken from ranges-v3 // TODO add doc template -struct __static_const +struct _static_const { static constexpr T value{}; }; template -constexpr T __static_const::value; +constexpr T _static_const::value; inline namespace { - constexpr auto const& to_json = __static_const::value; - constexpr auto const& from_json = __static_const::value; + constexpr auto const& to_json = _static_const::value; + constexpr auto const& from_json = _static_const::value; } /*!