]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/common/servslkf.cpp
ICU-64252.0.1.tar.gz
[apple/icu.git] / icuSources / common / servslkf.cpp
index b8afaaadc1bc74b06bfaaeea4aaf5a15affe0b63..09154d1b9198e7f9924b8680fe1933a8fe98a24c 100644 (file)
@@ -1,6 +1,8 @@
+// © 2016 and later: Unicode, Inc. and others.
+// License & terms of use: http://www.unicode.org/copyright.html
 /**
  *******************************************************************************
- * Copyright (C) 2001-2005, International Business Machines Corporation and    *
+ * Copyright (C) 2001-2014, International Business Machines Corporation and    *
  * others. All Rights Reserved.                                                *
  *******************************************************************************
  *
@@ -17,7 +19,6 @@
 #include "ustrfmt.h"
 #include "uhash.h"
 #include "charstr.h"
-#include "ucln_cmn.h"
 #include "uassert.h"
 
 #define UNDERSCORE_CHAR ((UChar)0x005f)
@@ -98,9 +99,9 @@ UnicodeString&
 SimpleLocaleKeyFactory::debug(UnicodeString& result) const
 {
     LocaleKeyFactory::debug(result);
-    result.append(", id: ");
+    result.append((UnicodeString)", id: ");
     result.append(_id);
-    result.append(", kind: ");
+    result.append((UnicodeString)", kind: ");
     result.append(_kind);
     return result;
 }
@@ -108,7 +109,7 @@ SimpleLocaleKeyFactory::debug(UnicodeString& result) const
 UnicodeString&
 SimpleLocaleKeyFactory::debugClass(UnicodeString& result) const
 {
-    return result.append("SimpleLocaleKeyFactory");
+    return result.append((UnicodeString)"SimpleLocaleKeyFactory");
 }
 #endif