mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Simplify namespace access
The icu namespace is an alias which resolves to the real namespace.
This commit is contained in:
parent
8d35a42383
commit
d8200e4885
21 changed files with 43 additions and 43 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue