diff options
author | Albert Astals Cid <albert.astals.cid@kdab.com> | 2019-02-14 16:34:06 (GMT) |
---|---|---|
committer | Albert Astals Cid <albert.astals.cid@kdab.com> | 2019-02-14 16:34:06 (GMT) |
commit | 30faf7262561da45a79af5de9c77531091dac6b9 (patch) | |
tree | 060adadb7ed79495df812c356f15f27f2db800eb /Source | |
parent | e3353a0175fb27bc2967c3df78b8be1c0615b21d (diff) | |
download | CMake-30faf7262561da45a79af5de9c77531091dac6b9.zip CMake-30faf7262561da45a79af5de9c77531091dac6b9.tar.gz CMake-30faf7262561da45a79af5de9c77531091dac6b9.tar.bz2 |
Remove return from void function
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmQtAutoGeneratorMocUic.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmQtAutoGeneratorMocUic.cxx b/Source/cmQtAutoGeneratorMocUic.cxx index ddff4cf..2959b7d 100644 --- a/Source/cmQtAutoGeneratorMocUic.cxx +++ b/Source/cmQtAutoGeneratorMocUic.cxx @@ -1020,20 +1020,20 @@ cmQtAutoGeneratorMocUic::WorkerT::~WorkerT() void cmQtAutoGeneratorMocUic::WorkerT::LogInfo( GeneratorT genType, std::string const& message) const { - return Log().Info(genType, message); + Log().Info(genType, message); } void cmQtAutoGeneratorMocUic::WorkerT::LogWarning( GeneratorT genType, std::string const& message) const { - return Log().Warning(genType, message); + Log().Warning(genType, message); } void cmQtAutoGeneratorMocUic::WorkerT::LogFileWarning( GeneratorT genType, std::string const& filename, std::string const& message) const { - return Log().WarningFile(genType, filename, message); + Log().WarningFile(genType, filename, message); } void cmQtAutoGeneratorMocUic::WorkerT::LogError( |