aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cppgenerator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cppgenerator.cpp b/cppgenerator.cpp
index ae4a055cc..55add07e9 100644
--- a/cppgenerator.cpp
+++ b/cppgenerator.cpp
@@ -554,7 +554,7 @@ void CppGenerator::writeVirtualMethodNative(QTextStream &s, const AbstractMetaFu
<< PYTHON_RETURN_VAR << "->ob_type->tp_name);" << endl;
s << INDENT << INDENT << "return ";
writeMinimalConstructorCallArguments(s, func->type());
- s << INDENT << INDENT << ";" << endl;
+ s << ';' << endl;
s << INDENT << "}" << endl;
}