summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalNinjaGenerator.h
diff options
context:
space:
mode:
authorPeter Kümmel <syntheticpp@gmx.net>2012-07-19 05:32:03 (GMT)
committerPeter Kümmel <syntheticpp@gmx.net>2012-07-19 05:32:03 (GMT)
commitd569f3ef15cd05f3a42788dba26abd1e0846c59e (patch)
tree88cbf118eee72daa8119024b60cbc35099c3c2cb /Source/cmLocalNinjaGenerator.h
parent52160bf68f2d3b948efda5a7a64642e7e0969d9e (diff)
downloadCMake-d569f3ef15cd05f3a42788dba26abd1e0846c59e.zip
CMake-d569f3ef15cd05f3a42788dba26abd1e0846c59e.tar.gz
CMake-d569f3ef15cd05f3a42788dba26abd1e0846c59e.tar.bz2
Ninja: void function can't return a value
Diffstat (limited to 'Source/cmLocalNinjaGenerator.h')
-rw-r--r--Source/cmLocalNinjaGenerator.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalNinjaGenerator.h b/Source/cmLocalNinjaGenerator.h
index 20b36e8..c450841 100644
--- a/Source/cmLocalNinjaGenerator.h
+++ b/Source/cmLocalNinjaGenerator.h
@@ -83,8 +83,8 @@ public:
void ExpandRuleVariables(std::string& string,
const RuleVariables& replaceValues) {
- return cmLocalGenerator::
- ExpandRuleVariables(string, replaceValues); }
+ cmLocalGenerator::ExpandRuleVariables(string, replaceValues);
+ }
std::string BuildCommandLine(const std::vector<std::string> &cmdLines);