]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/common/servlk.cpp
ICU-59180.0.1.tar.gz
[apple/icu.git] / icuSources / common / servlk.cpp
index b62041484583353cee931e955a81b1afeccb7327..538982ca36285c150531f479786e88797fb1d0d9 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-2004, 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)
@@ -159,13 +160,13 @@ UnicodeString&
 LocaleKey::debug(UnicodeString& result) const
 {
     ICUServiceKey::debug(result);
-    result.append(" kind: ");
+    result.append((UnicodeString)" kind: ");
     result.append(_kind);
-    result.append(" primaryID: ");
+    result.append((UnicodeString)" primaryID: ");
     result.append(_primaryID);
-    result.append(" fallbackID: ");
+    result.append((UnicodeString)" fallbackID: ");
     result.append(_fallbackID);
-    result.append(" currentID: ");
+    result.append((UnicodeString)" currentID: ");
     result.append(_currentID);
     return result;
 }
@@ -173,7 +174,7 @@ LocaleKey::debug(UnicodeString& result) const
 UnicodeString&
 LocaleKey::debugClass(UnicodeString& result) const
 {
-    return result.append("LocaleKey ");
+    return result.append((UnicodeString)"LocaleKey ");
 }
 #endif