summaryrefslogtreecommitdiff
path: root/cpp/src/slice2php/Main.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2009-12-11 13:53:15 -0800
committerMark Spruiell <mes@zeroc.com>2009-12-11 13:53:15 -0800
commitfe15675f87e3bf3976ea17d0e624c6effdebe5d7 (patch)
tree2bf6eb22997cf808b95762866ad777f68c11b66b /cpp/src/slice2php/Main.cpp
parenttypo. (diff)
downloadice-fe15675f87e3bf3976ea17d0e624c6effdebe5d7.tar.bz2
ice-fe15675f87e3bf3976ea17d0e624c6effdebe5d7.tar.xz
ice-fe15675f87e3bf3976ea17d0e624c6effdebe5d7.zip
more PHP fixes
Diffstat (limited to 'cpp/src/slice2php/Main.cpp')
-rw-r--r--cpp/src/slice2php/Main.cpp11
1 files changed, 1 insertions, 10 deletions
diff --git a/cpp/src/slice2php/Main.cpp b/cpp/src/slice2php/Main.cpp
index f0f09f0a7d5..87f43380bff 100644
--- a/cpp/src/slice2php/Main.cpp
+++ b/cpp/src/slice2php/Main.cpp
@@ -845,16 +845,7 @@ CodeVisitor::visitSequence(const SequencePtr& p)
_out << sb;
_out << nl << type << " = IcePHP_defineSequence('" << scoped << "', ";
writeType(content);
- _out << ", ";
- if(content->isVariableLength())
- {
- _out << "true";
- }
- else
- {
- _out << "false";
- }
- _out << ", " << content->minWireSize() << ");";
+ _out << ");";
_out << eb;
endNamespace();