diff options
author | Anatol Belski <ab@php.net> | 2018-04-01 01:03:40 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2018-04-01 01:03:40 +0200 |
commit | d8200e48857aeaf09f7127751efc5632ef7660a7 (patch) | |
tree | 0e920dce471d43ddd4803b24535f27a1da9150b1 /ext/intl/timezone/timezone_methods.cpp | |
parent | 8d35a423838eb462cd39ee535c5d003073cc5f22 (diff) | |
download | php-git-d8200e48857aeaf09f7127751efc5632ef7660a7.tar.gz |
Simplify namespace access
The icu namespace is an alias which resolves to the real namespace.
Diffstat (limited to 'ext/intl/timezone/timezone_methods.cpp')
-rw-r--r-- | ext/intl/timezone/timezone_methods.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/intl/timezone/timezone_methods.cpp b/ext/intl/timezone/timezone_methods.cpp index abf4548d27..5cf5afc934 100644 --- a/ext/intl/timezone/timezone_methods.cpp +++ b/ext/intl/timezone/timezone_methods.cpp @@ -38,8 +38,8 @@ extern "C" { } #include "common/common_enum.h" -using U_ICU_NAMESPACE::Locale; -using U_ICU_NAMESPACE::Calendar; +using icu::Locale; +using icu::Calendar; U_CFUNC PHP_METHOD(IntlTimeZone, __construct) { |