[Libreoffice-commits] core.git: include/rtl

David Ostrovsky david at ostrovsky.org
Wed Jul 22 10:56:36 PDT 2015


 include/rtl/stringutils.hxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit a6c47236a4c3708398d403abf940f567d15da0a6
Author: David Ostrovsky <david at ostrovsky.org>
Date:   Mon Jul 6 23:56:44 2015 +0200

    Apply special treatment of OUStringLiteral1 to MSVC 2015
    
    Change-Id: I56e69fbdb555bb30cd88d75717d6f716c81ae237
    Reviewed-on: https://gerrit.libreoffice.org/16804
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Thorsten Behrens <Thorsten.Behrens at CIB.de>

diff --git a/include/rtl/stringutils.hxx b/include/rtl/stringutils.hxx
index ff25d4d..d1b3cc4 100644
--- a/include/rtl/stringutils.hxx
+++ b/include/rtl/stringutils.hxx
@@ -77,7 +77,7 @@ template<char C> struct SAL_WARN_UNUSED OUStringLiteral1_ {
         "non-ASCII character in OUStringLiteral1");
     char const c = C;
 };
-#if defined _MSC_VER && _MSC_VER <= 1800 // Visual Studio 2013
+#if defined _MSC_VER && _MSC_VER <= 1900 // Visual Studio 2015
 template<char C> using OUStringLiteral1 = OUStringLiteral1_<C>;
 #pragma warning(disable: 4239)
 #else
@@ -216,8 +216,8 @@ template< int N >
 struct ExceptCharArrayDetector< const char[ N ] >
 {
 };
-#if defined LIBO_INTERNAL_ONLY && defined _MSC_VER && _MSC_VER <= 1800
-    // Visual Studio 2013
+#if defined LIBO_INTERNAL_ONLY && defined _MSC_VER && _MSC_VER <= 1900
+    // Visual Studio 2015
 template<char C> struct ExceptCharArrayDetector<OUStringLiteral1<C>> {};
 #endif
 


More information about the Libreoffice-commits mailing list