diff options
Diffstat (limited to 'cpp/src/slice2php/Main.cpp')
-rw-r--r-- | cpp/src/slice2php/Main.cpp | 11 |
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(); |