diff options
author | renato araujo <renato@renato-mac.osmtc.indt.org.br> | 2009-10-21 10:47:15 -0300 |
---|---|---|
committer | renato araujo <renato@renato-mac.osmtc.indt.org.br> | 2009-10-21 15:24:06 -0300 |
commit | 17a82a3123c8f0d21aa4e32e295f729d862e65f4 (patch) | |
tree | 14377df30f7cbd799bad158dbf8231cab40832ad /generators/boostpython/hppgenerator.cpp | |
parent | 50a75628a9d5ca8dc516c466d97ca0d0cd4004ca (diff) | |
download | generatorrunner-17a82a3123c8f0d21aa4e32e295f729d862e65f4.tar.gz generatorrunner-17a82a3123c8f0d21aa4e32e295f729d862e65f4.tar.xz generatorrunner-17a82a3123c8f0d21aa4e32e295f729d862e65f4.zip |
Implemented support to conversion-rule tag.
Reviwed by: Marcelo Lira <marcelo.lira@openbossa.org>
Diffstat (limited to 'generators/boostpython/hppgenerator.cpp')
-rw-r--r-- | generators/boostpython/hppgenerator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generators/boostpython/hppgenerator.cpp b/generators/boostpython/hppgenerator.cpp index 2bdfae4..334cee5 100644 --- a/generators/boostpython/hppgenerator.cpp +++ b/generators/boostpython/hppgenerator.cpp @@ -170,7 +170,7 @@ void HppGenerator::writeFunction(QTextStream &s, const AbstractMetaFunction* fun if (func->isVirtual() && !func->isAbstract() && !func->isConstructor() && !func->ownerClass()->hasPrivateDestructor() && func->implementingClass() == func->ownerClass()) { - s << INDENT << "static " << signatureForDefaultVirtualMethod(func, "", "_default", Generator::SkipName) << ';' << endl; + s << INDENT << "static " << signatureForDefaultVirtualMethod(func, "", "_default", Generator::Options( Generator::SkipName | Generator::SkipRemovedArguments) ) << ';' << endl; } if (func->isConstructor()) { |