From 9f925b028735dd8ae0e28d9e855a2322895ca997 Mon Sep 17 00:00:00 2001 From: Andy Heninger Date: Wed, 21 Sep 2016 21:02:21 +0000 Subject: [PATCH] ICU-12751 CStr, add icu:: namespace. X-SVN-Rev: 39317 --- icu4c/source/tools/toolutil/udbgutil.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/icu4c/source/tools/toolutil/udbgutil.cpp b/icu4c/source/tools/toolutil/udbgutil.cpp index cd7155cc627..bbb814ba901 100644 --- a/icu4c/source/tools/toolutil/udbgutil.cpp +++ b/icu4c/source/tools/toolutil/udbgutil.cpp @@ -693,8 +693,8 @@ void KnownIssues::add(const char *ticket, const char *where, const UChar *msg, U if(msg==NULL || !*msg) return; const icu::UnicodeString ustr(msg); - - fTable[ticket][where].insert(std::string(CStr(ustr)())); + + fTable[ticket][where].insert(std::string(icu::CStr(ustr)())); } void KnownIssues::add(const char *ticket, const char *where, const char *msg, UBool *firstForTicket, UBool *firstForWhere)