//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // REQUIRES: locale.en_US.UTF-8 // REQUIRES: locale.fr_FR.UTF-8 // // template class numpunct_byname; // char_type thousands_sep() const; #include #include #include "platform_support.h" // locale name macros int main() { { std::locale l("C"); { typedef char C; const std::numpunct& np = std::use_facet >(l); assert(np.thousands_sep() == ','); } { typedef wchar_t C; const std::numpunct& np = std::use_facet >(l); assert(np.thousands_sep() == L','); } } { std::locale l(LOCALE_en_US_UTF_8); { typedef char C; const std::numpunct& np = std::use_facet >(l); assert(np.thousands_sep() == ','); } { typedef wchar_t C; const std::numpunct& np = std::use_facet >(l); assert(np.thousands_sep() == L','); } } { std::locale l(LOCALE_fr_FR_UTF_8); { typedef char C; const std::numpunct& np = std::use_facet >(l); assert(np.thousands_sep() == ','); } { typedef wchar_t C; const std::numpunct& np = std::use_facet >(l); assert(np.thousands_sep() == L','); } } }