TerraForge3D  2.3.1
3D Terrain And Landscape Generator

◆ get_decimal_point()

template<typename BasicJsonType , typename InputAdapterType >
static JSON_HEDLEY_PURE char nlohmann::detail::lexer< BasicJsonType, InputAdapterType >::get_decimal_point ( )
inlinestaticprivatenoexcept

return the locale-dependent decimal point

Definition at line 6723 of file json.hpp.

6724 {
6725 const auto *loc = localeconv();
6726 JSON_ASSERT(loc != nullptr);
6727 return (loc->decimal_point == nullptr) ? '.' : *(loc->decimal_point);
6728 }