From d8200e48857aeaf09f7127751efc5632ef7660a7 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Sun, 1 Apr 2018 01:03:40 +0200 Subject: Simplify namespace access The icu namespace is an alias which resolves to the real namespace. --- ext/intl/msgformat/msgformat_helpers.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'ext/intl/msgformat/msgformat_helpers.cpp') diff --git a/ext/intl/msgformat/msgformat_helpers.cpp b/ext/intl/msgformat/msgformat_helpers.cpp index 5a45398dce..287139bb93 100644 --- a/ext/intl/msgformat/msgformat_helpers.cpp +++ b/ext/intl/msgformat/msgformat_helpers.cpp @@ -76,15 +76,15 @@ MessageFormatAdapter::getMessagePattern(MessageFormat* m) { #endif U_NAMESPACE_END -using U_ICU_NAMESPACE::Formattable; -using U_ICU_NAMESPACE::Format; -using U_ICU_NAMESPACE::DateFormat; -using U_ICU_NAMESPACE::MessageFormat; +using icu::Formattable; +using icu::Format; +using icu::DateFormat; +using icu::MessageFormat; #ifdef HAS_MESSAGE_PATTERN -using U_ICU_NAMESPACE::MessagePattern; +using icu::MessagePattern; #endif -using U_ICU_NAMESPACE::MessageFormatAdapter; -using U_ICU_NAMESPACE::FieldPosition; +using icu::MessageFormatAdapter; +using icu::FieldPosition; U_CFUNC int32_t umsg_format_arg_count(UMessageFormat *fmt) { -- cgit v1.2.1