From 15962facca5f99173201887d29aea6774fea6b91 Mon Sep 17 00:00:00 2001 From: Yoshito Umaoka Date: Wed, 3 Sep 2014 14:16:17 +0000 Subject: [PATCH] ICU-8951 Fix for a build error on Mac. X-SVN-Rev: 36326 --- icu4c/source/common/uloc_keytype.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/icu4c/source/common/uloc_keytype.cpp b/icu4c/source/common/uloc_keytype.cpp index 896ea9ee794..315231577df 100644 --- a/icu4c/source/common/uloc_keytype.cpp +++ b/icu4c/source/common/uloc_keytype.cpp @@ -115,15 +115,15 @@ initFromResourceBundle(UErrorCode& sts) { } // initialize vectors storing dynamically allocated objects - gKeyTypeStringPool = new UVector(uloc_deleteKeyTypeStringPoolEntry, NULL, sts); + gKeyTypeStringPool = new icu::UVector(uloc_deleteKeyTypeStringPoolEntry, NULL, sts); if (gKeyTypeStringPool == NULL || U_FAILURE(sts)) { goto close_bundles; } - gLocExtKeyDataEntries = new UVector(uloc_deleteKeyDataEntry, NULL, sts); + gLocExtKeyDataEntries = new icu::UVector(uloc_deleteKeyDataEntry, NULL, sts); if (gLocExtKeyDataEntries == NULL || U_FAILURE(sts)) { goto close_bundles; } - gLocExtTypeEntries = new UVector(uloc_deleteTypeEntry, NULL, sts); + gLocExtTypeEntries = new icu::UVector(uloc_deleteTypeEntry, NULL, sts); if (gLocExtTypeEntries == NULL || U_FAILURE(sts)) { goto close_bundles; } -- 2.40.0