fix compilation in VC9 (setlocale not in std::)

This commit is contained in:
Anonymissimus 2011-11-27 01:56:09 +00:00
parent 35a17fd952
commit 1d2b5003f3

View file

@ -58,7 +58,7 @@ namespace test_utils {
, font_manager_()
{
#ifdef _WIN32
std::setlocale(LC_ALL, "English");
setlocale(LC_ALL, "English");
#else
std::setlocale(LC_ALL, "C");
std::setlocale(LC_MESSAGES, "");