mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-17 18:12:04 +01:00
Corrected MSC_VER ifdefs for VC++.Net
This commit is contained in:
parent
1e34351b83
commit
fce9d3643f
1 changed files with 2 additions and 2 deletions
|
@ -73,7 +73,7 @@ public:
|
|||
} // toStdWString
|
||||
|
||||
default_string_adaptor() :
|
||||
#ifndef _MSC_VER
|
||||
#if !(_MSC_VER < 1300)
|
||||
loc_(std::locale(), new utf16utf8_codecvt()),
|
||||
#else
|
||||
loc_(std::_Addfac(std::locale(), new utf16utf8_codecvt)),
|
||||
|
@ -137,7 +137,7 @@ public:
|
|||
} // toStdWString
|
||||
|
||||
default_string_adaptor() :
|
||||
#ifndef _MSC_VER
|
||||
#if !(_MSC_VER < 1300)
|
||||
loc_(std::locale(), new utf16utf8_codecvt()),
|
||||
#else
|
||||
loc_(std::_Addfac(std::locale(), new utf16utf8_codecvt)),
|
||||
|
|
Loading…
Reference in a new issue