
21 Jun
2010
21 Jun
'10
12:12 p.m.
Artyom wrote:
Is it common to use different locales for different files?
It is very uncommon to use global locale as... about half of programs will be broken as they not locale-aware.
(example boost::lexical_cast<std::string>(1024)=="1.024", many developers would not expect this)
You can change only codecvt facet. - Volodya