diff options
Diffstat (limited to 'cpp/src/slice2cs/Gen.cpp')
-rwxr-xr-x | cpp/src/slice2cs/Gen.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/slice2cs/Gen.cpp b/cpp/src/slice2cs/Gen.cpp index a51903c5487..e1e7bb8e918 100755 --- a/cpp/src/slice2cs/Gen.cpp +++ b/cpp/src/slice2cs/Gen.cpp @@ -4466,7 +4466,7 @@ Slice::Gen::TieVisitor::visitClassDefStart(const ClassDefPtr& p) ClassList bases = p->bases(); for(ClassList::const_iterator i = bases.begin(); i != bases.end(); ++i) { - writeInheritedOperations(*i, opNames); + writeInheritedOperationsWithOpNames(*i, opNames); } _out << sp << nl << "private _" << name << opIntfName << " _ice_delegate;"; @@ -4481,7 +4481,7 @@ Slice::Gen::TieVisitor::visitClassDefEnd(const ClassDefPtr&) } void -Slice::Gen::TieVisitor::writeInheritedOperations(const ClassDefPtr& p, NameSet& opNames) +Slice::Gen::TieVisitor::writeInheritedOperationsWithOpNames(const ClassDefPtr& p, NameSet& opNames) { OperationList ops = p->operations(); OperationList::const_iterator r; @@ -4540,7 +4540,7 @@ Slice::Gen::TieVisitor::writeInheritedOperations(const ClassDefPtr& p, NameSet& ClassList bases = p->bases(); for(ClassList::const_iterator i = bases.begin(); i != bases.end(); ++i) { - writeInheritedOperations(*i, opNames); + writeInheritedOperationsWithOpNames(*i, opNames); } } |