diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-01-26 13:01:10 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-01-26 13:01:47 +0000 |
commit | 4e5cb9fdbac5c7afef599648737bdcfe37af6ccf (patch) | |
tree | a482f28c31755f7cc2083466faa2d892307bc0c1 /codemaker | |
parent | 707e0f4e6b6e36432c0f04f22719428a7e1a50ee (diff) |
coverity#1019311 silence Unchecked return value
Change-Id: Ife2bfed0eecff5fe247d0fef6ee7d77626d9f0be
Diffstat (limited to 'codemaker')
-rw-r--r-- | codemaker/source/cppumaker/cpputype.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/codemaker/source/cppumaker/cpputype.cxx b/codemaker/source/cppumaker/cpputype.cxx index 15e1f116d638..c8b52857c648 100644 --- a/codemaker/source/cppumaker/cpputype.cxx +++ b/codemaker/source/cppumaker/cpputype.cxx @@ -449,7 +449,7 @@ void CppuType::dumpFile( throw; } out.close(); - makeValidTypeFile( + (void)makeValidTypeFile( u2b(fileUri), u2b(tmpUri), exists && options.isValid("-Gc")); } |