diff options
author | Mark Spruiell <mes@zeroc.com> | 2008-04-08 14:35:27 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2008-04-08 14:35:27 -0700 |
commit | 45a30209a511d761773875bd65e64556f57b30b4 (patch) | |
tree | 666b401418cf4ccbc68cc3c69e651f04ee62faee | |
parent | Generate constructors for structure, exception, and class types (diff) | |
download | ice-45a30209a511d761773875bd65e64556f57b30b4.tar.bz2 ice-45a30209a511d761773875bd65e64556f57b30b4.tar.xz ice-45a30209a511d761773875bd65e64556f57b30b4.zip |
fix for compiler warning in PHP
-rw-r--r-- | php/src/IcePHP/Profile.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/php/src/IcePHP/Profile.cpp b/php/src/IcePHP/Profile.cpp index da2c8cd6092..fafd06ab72a 100644 --- a/php/src/IcePHP/Profile.cpp +++ b/php/src/IcePHP/Profile.cpp @@ -1461,6 +1461,7 @@ IcePHP::CodeVisitor::getDefaultValue(const Slice::TypePtr& type) case Slice::Builtin::KindObject: case Slice::Builtin::KindObjectProxy: + case Slice::Builtin::KindLocalObject: return "null"; } } |