diff options
author | Michi Henning <michi@zeroc.com> | 2007-10-15 12:32:22 +1000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2007-10-15 12:32:22 +1000 |
commit | a0f16eb62a769237ffba3094fb459acebe8bdbf9 (patch) | |
tree | d7f67710b7c1e866b301c40aa2983d08f22dc6b3 /cpp/src | |
parent | Fixed bug #702 (diff) | |
download | ice-a0f16eb62a769237ffba3094fb459acebe8bdbf9.tar.bz2 ice-a0f16eb62a769237ffba3094fb459acebe8bdbf9.tar.xz ice-a0f16eb62a769237ffba3094fb459acebe8bdbf9.zip |
Removed left-behind commented out code.
Diffstat (limited to 'cpp/src')
-rwxr-xr-x | cpp/src/slice2cs/Gen.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/cpp/src/slice2cs/Gen.cpp b/cpp/src/slice2cs/Gen.cpp index 24df02af591..dabd6389136 100755 --- a/cpp/src/slice2cs/Gen.cpp +++ b/cpp/src/slice2cs/Gen.cpp @@ -2203,25 +2203,6 @@ Slice::Gen::TypesVisitor::visitStructEnd(const StructPtr& p) _out << "s"; _out << sp << nl << "public " << name << "()"; _out << sb; - /* - if(!p->isLocal()) - { - for(q = dataMembers.begin(); q != dataMembers.end(); ++q) - { - if(!isValueType((*q)->type())) - { - string memberName = fixId((*q)->name(), isClass ? DotNet::ICloneable : 0); - string memberType = typeToString((*q)->type()); - _out << nl << "this." << memberName; - if(propertyMapping) - { - _out << "_prop"; - } - _out << " = new " << memberType << "();"; - } - } - } - */ _out << eb; } |