summaryrefslogtreecommitdiff
path: root/ext/intl/dateformat/dateformat_helpers.cpp
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2018-04-01 01:03:40 +0200
committerAnatol Belski <ab@php.net>2018-04-01 01:03:40 +0200
commitd8200e48857aeaf09f7127751efc5632ef7660a7 (patch)
tree0e920dce471d43ddd4803b24535f27a1da9150b1 /ext/intl/dateformat/dateformat_helpers.cpp
parent8d35a423838eb462cd39ee535c5d003073cc5f22 (diff)
downloadphp-git-d8200e48857aeaf09f7127751efc5632ef7660a7.tar.gz
Simplify namespace access
The icu namespace is an alias which resolves to the real namespace.
Diffstat (limited to 'ext/intl/dateformat/dateformat_helpers.cpp')
-rw-r--r--ext/intl/dateformat/dateformat_helpers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/intl/dateformat/dateformat_helpers.cpp b/ext/intl/dateformat/dateformat_helpers.cpp
index 3caf59a309..7e070ea464 100644
--- a/ext/intl/dateformat/dateformat_helpers.cpp
+++ b/ext/intl/dateformat/dateformat_helpers.cpp
@@ -28,7 +28,7 @@ extern "C" {
#include "../calendar/calendar_class.h"
}
-using U_ICU_NAMESPACE::GregorianCalendar;
+using icu::GregorianCalendar;
int datefmt_process_calendar_arg(zval* calendar_zv,
Locale const& locale,