summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlbert Astals Cid <albert.astals.cid@kdab.com>2019-02-14 16:34:06 (GMT)
committerAlbert Astals Cid <albert.astals.cid@kdab.com>2019-02-14 16:34:06 (GMT)
commit30faf7262561da45a79af5de9c77531091dac6b9 (patch)
tree060adadb7ed79495df812c356f15f27f2db800eb
parente3353a0175fb27bc2967c3df78b8be1c0615b21d (diff)
downloadCMake-30faf7262561da45a79af5de9c77531091dac6b9.zip
CMake-30faf7262561da45a79af5de9c77531091dac6b9.tar.gz
CMake-30faf7262561da45a79af5de9c77531091dac6b9.tar.bz2
Remove return from void function
-rw-r--r--Source/cmQtAutoGeneratorMocUic.cxx6
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(