summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorAlex Neundorf <neundorf@kde.org>2011-08-16 22:39:21 (GMT)
committerAlex Neundorf <neundorf@kde.org>2011-08-16 22:39:21 (GMT)
commitadd30e9008fcb4d5277692958aac7f933539f983 (patch)
treefb05a1e071e9baec4c3f3ad0b231f4e04faa907f /Source
parent7e6d84568c8c390fc53cbaaf70f6839e3cf4ebd7 (diff)
downloadCMake-add30e9008fcb4d5277692958aac7f933539f983.zip
CMake-add30e9008fcb4d5277692958aac7f933539f983.tar.gz
CMake-add30e9008fcb4d5277692958aac7f933539f983.tar.bz2
Fix build: non-void function must return a value
Alex
Diffstat (limited to 'Source')
-rw-r--r--Source/cmQtAutomoc.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmQtAutomoc.cxx b/Source/cmQtAutomoc.cxx
index e8c4baa..7e50064 100644
--- a/Source/cmQtAutomoc.cxx
+++ b/Source/cmQtAutomoc.cxx
@@ -168,7 +168,7 @@ bool cmQtAutomoc::Run(const char* targetDirectory)
delete gg;
gg = NULL;
makefile = NULL;
-
+ return true;
}