Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
CMake
CMake
Commits
30faf726
Commit
30faf726
authored
Feb 14, 2019
by
Albert Astals Cid
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove return from void function
parent
e3353a01
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Source/cmQtAutoGeneratorMocUic.cxx
Source/cmQtAutoGeneratorMocUic.cxx
+3
-3
No files found.
Source/cmQtAutoGeneratorMocUic.cxx
View file @
30faf726
...
...
@@ -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
(
...
...
Kyle Edwards
@kyle.edwards
mentioned in commit
160735c4
·
Feb 15, 2019
mentioned in commit
160735c4
mentioned in commit 160735c479535f0137c7b9a14edeccb623473f74
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment