X-Git-Url: https://git.saurik.com/apple/icu.git/blobdiff_plain/73c04bcfe1096173b00431f0cdc742894b15eef0..38fbf2fd31f5cd99b500914d6037b1d06b608645:/icuSources/common/servlk.cpp diff --git a/icuSources/common/servlk.cpp b/icuSources/common/servlk.cpp index b6204148..538982ca 100644 --- a/icuSources/common/servlk.cpp +++ b/icuSources/common/servlk.cpp @@ -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