diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2017-02-24 11:21:31 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-03-02 14:10:02 (GMT) |
commit | ac77fa35c0250f2f7593fd2fc499b27bf395e5a6 (patch) | |
tree | a10d6e1df998fc6896c5716e6cc2215d4ff35d26 | |
parent | 662ad240db50792361aa042c60559c1c48042a6b (diff) | |
download | CMake-ac77fa35c0250f2f7593fd2fc499b27bf395e5a6.zip CMake-ac77fa35c0250f2f7593fd2fc499b27bf395e5a6.tar.gz CMake-ac77fa35c0250f2f7593fd2fc499b27bf395e5a6.tar.bz2 |
Autogen: Add missing return on error
-rw-r--r-- | Source/cmQtAutoGenerators.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmQtAutoGenerators.cxx b/Source/cmQtAutoGenerators.cxx index c4ae318..2fa5359 100644 --- a/Source/cmQtAutoGenerators.cxx +++ b/Source/cmQtAutoGenerators.cxx @@ -396,6 +396,7 @@ bool cmQtAutoGenerators::ReadAutogenInfoFile( } else { this->LogError("AutoMoc: Error: AUTOMOC_DEPEND_FILTERS list size is not " "a multiple of 2"); + return false; } } |