diff options
author | Bernard Normier <bernard@zeroc.com> | 2016-08-01 20:44:44 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2016-08-01 20:44:44 -0400 |
commit | 85fbacffa1956979bbca07d47104fd710825d045 (patch) | |
tree | 7b8e4700f34fe884cc8ad418cfd3e11ac5a22bf7 /php/src | |
parent | Fixed typo (diff) | |
download | ice-85fbacffa1956979bbca07d47104fd710825d045.tar.bz2 ice-85fbacffa1956979bbca07d47104fd710825d045.tar.xz ice-85fbacffa1956979bbca07d47104fd710825d045.zip |
Move generateUUID to Ice
Diffstat (limited to 'php/src')
-rw-r--r-- | php/src/php5/Util.cpp | 4 | ||||
-rw-r--r-- | php/src/php7/Util.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/php/src/php5/Util.cpp b/php/src/php5/Util.cpp index 0413faa4eb4..24374f91049 100644 --- a/php/src/php5/Util.cpp +++ b/php/src/php5/Util.cpp @@ -8,7 +8,7 @@ // ********************************************************************** #include <Util.h> -#include <IceUtil/UUID.h> +#include <Ice/UUID.h> #include <Slice/PHPUtil.h> #include <algorithm> #include <ctype.h> @@ -924,7 +924,7 @@ ZEND_FUNCTION(Ice_generateUUID) WRONG_PARAM_COUNT; } - string uuid = IceUtil::generateUUID(); + string uuid = Ice::generateUUID(); RETURN_STRINGL(STRCAST(uuid.c_str()), static_cast<int>(uuid.size()), 1); } diff --git a/php/src/php7/Util.cpp b/php/src/php7/Util.cpp index 740efa79e78..0399c940cb1 100644 --- a/php/src/php7/Util.cpp +++ b/php/src/php7/Util.cpp @@ -8,7 +8,7 @@ // ********************************************************************** #include <Util.h> -#include <IceUtil/UUID.h> +#include <Ice/UUID.h> #include <Slice/PHPUtil.h> #include <algorithm> #include <ctype.h> @@ -862,7 +862,7 @@ ZEND_FUNCTION(Ice_generateUUID) WRONG_PARAM_COUNT; } - string uuid = IceUtil::generateUUID(); + string uuid = Ice::generateUUID(); RETURN_STRINGL(STRCAST(uuid.c_str()), static_cast<int>(uuid.size())); } |