diff --git a/src/NCollection/NCollection_UtfString.hxx b/src/NCollection/NCollection_UtfString.hxx index 57cd8642a9..61ff91672b 100755 --- a/src/NCollection/NCollection_UtfString.hxx +++ b/src/NCollection/NCollection_UtfString.hxx @@ -96,7 +96,7 @@ public: NCollection_UtfString (const Standard_Utf32Char* theCopyUtf32, const Standard_Integer theLength = -1); -#if !defined(_WIN32) || defined(_NATIVE_WCHAR_T_DEFINED) || (defined(_MSC_VER) && _MSC_VER >= 1900) +#if !defined(_MSC_VER) || defined(_NATIVE_WCHAR_T_DEFINED) || (defined(_MSC_VER) && _MSC_VER >= 1900) //! Copy constructor from NULL-terminated wide UTF string. //! @param theCopyUtfWide NULL-terminated wide UTF string to copy //! @param theLength the length limit in Unicode symbols (NOT bytes!) diff --git a/src/NCollection/NCollection_UtfString.lxx b/src/NCollection/NCollection_UtfString.lxx index ba602f532b..ca03ab2817 100755 --- a/src/NCollection/NCollection_UtfString.lxx +++ b/src/NCollection/NCollection_UtfString.lxx @@ -179,7 +179,7 @@ NCollection_UtfString::NCollection_UtfString (const Standard_Utf32Char* th FromUnicode (theCopyUtf32, theLength); } -#if !defined(_WIN32) || defined(_NATIVE_WCHAR_T_DEFINED) || (defined(_MSC_VER) && _MSC_VER >= 1900) +#if !defined(_MSC_VER) || defined(_NATIVE_WCHAR_T_DEFINED) || (defined(_MSC_VER) && _MSC_VER >= 1900) // ======================================================================= // function : NCollection_UtfString // purpose : diff --git a/src/TCollection/TCollection_AsciiString.hxx b/src/TCollection/TCollection_AsciiString.hxx index bb39d47d30..cac5525439 100644 --- a/src/TCollection/TCollection_AsciiString.hxx +++ b/src/TCollection/TCollection_AsciiString.hxx @@ -99,7 +99,7 @@ public: //! Otherwise, creates UTF-8 unicode string. Standard_EXPORT TCollection_AsciiString(const TCollection_ExtendedString& astring, const Standard_Character replaceNonAscii = 0); -#if !defined(_WIN32) || defined(_NATIVE_WCHAR_T_DEFINED) +#if !defined(_MSC_VER) || defined(_NATIVE_WCHAR_T_DEFINED) //! Initialize UTF-8 Unicode string from wide-char string considering it as Unicode string //! (the size of wide char is a platform-dependent - e.g. on Windows wchar_t is UTF-16). //! diff --git a/src/TCollection/TCollection_ExtendedString.hxx b/src/TCollection/TCollection_ExtendedString.hxx index 6564479f7d..5f10fec26d 100644 --- a/src/TCollection/TCollection_ExtendedString.hxx +++ b/src/TCollection/TCollection_ExtendedString.hxx @@ -73,7 +73,7 @@ public: //! Creation by converting an ExtString to an extended string. Standard_EXPORT TCollection_ExtendedString(const Standard_ExtString astring); -#if !defined(_WIN32) || defined(_NATIVE_WCHAR_T_DEFINED) +#if !defined(_MSC_VER) || defined(_NATIVE_WCHAR_T_DEFINED) //! Initialize from wide-char string considering it as Unicode string //! (the size of wide char is a platform-dependent - e.g. on Windows wchar_t is UTF-16). //!