diff --git a/libstdc++-v3/src/c++17/floating_to_chars.cc b/libstdc++-v3/src/c++17/floating_to_chars.cc index 3f46bce7a15c407a54104d19c045fc4e092efb36..b7c31c746cce0c516bfc1dc18410b4706c3e2ee3 100644 --- a/libstdc++-v3/src/c++17/floating_to_chars.cc +++ b/libstdc++-v3/src/c++17/floating_to_chars.cc @@ -1114,8 +1114,8 @@ template<typename T> // Since the output of printf is locale-sensitive, we need to be able // to handle a radix point that's different from '.'. char radix[6] = {'.', '\0', '\0', '\0', '\0', '\0'}; - if (effective_precision > 0) #ifdef RADIXCHAR + if (effective_precision > 0) // ???: Can nl_langinfo() ever return null? if (const char* const radix_ptr = nl_langinfo(RADIXCHAR)) {