aboutsummaryrefslogtreecommitdiffstats
path: root/headergenerator.cpp
diff options
context:
space:
mode:
authorRenato Filho <renato.filho@openbossa.org>2010-02-02 16:45:15 -0300
committerHugo Lima <hugo.lima@openbossa.org>2010-02-02 17:49:07 -0200
commit813bc2a8a7b65d273ca3e4f4009041f2923d25de (patch)
tree8641a89f2c544077cbb22f3038c134414c60c061 /headergenerator.cpp
parent11840009c679ef0e1114894d3c286e595b83d54d (diff)
Fixed declaration of inline function on header without implementation.
Reviewed by Hugo Parente <hugo.lima@openbossa.org>
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;
}