diff options
author | Anatol Belski <ab@php.net> | 2015-07-01 15:21:04 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2015-07-01 15:21:34 +0200 |
commit | 333db013fdb5b421c5a881ab4974c0672708eccf (patch) | |
tree | 2ae2ebe4099d76538175bb29e65ad47fbede74b7 /ext/intl/intl_convertcpp.h | |
parent | e2baf737aede3cea8a37cf29cbf1935308259566 (diff) | |
download | php-git-333db013fdb5b421c5a881ab4974c0672708eccf.tar.gz |
change the inclusion order which fixes the vc build
Diffstat (limited to 'ext/intl/intl_convertcpp.h')
-rw-r--r-- | ext/intl/intl_convertcpp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/intl/intl_convertcpp.h b/ext/intl/intl_convertcpp.h index 45ba7a2cd7..eab5f149c8 100644 --- a/ext/intl/intl_convertcpp.h +++ b/ext/intl/intl_convertcpp.h @@ -23,8 +23,8 @@ #error Should be included only in C++ Files #endif -#include <zend_types.h> #include <unicode/unistr.h> +#include <zend_types.h> int intl_stringFromChar(UnicodeString &ret, char *str, size_t str_len, UErrorCode *status); |