aboutsummaryrefslogtreecommitdiffstats
path: root/headergenerator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'headergenerator.cpp')
-rw-r--r--headergenerator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/headergenerator.cpp b/headergenerator.cpp
index 14004e422..b8d7b9e88 100644
--- a/headergenerator.cpp
+++ b/headergenerator.cpp
@@ -403,7 +403,7 @@ void HeaderGenerator::writeSbkCopyCppObjectFunction(QTextStream& s, const Abstra
s << "struct CppObjectCopier<" << className << " >" << endl;
s << '{' << endl;
s << INDENT << "static const bool isCppWrapper = true;" << endl;
- s << INDENT << "static inline " << className << "* copy(const " << className << "& cppobj);" << endl;
+ s << INDENT << "static " << className << "* copy(const " << className << "& cppobj);" << endl;
s << "};" << endl;
}