diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-01-08 09:56:18 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-01-08 17:15:04 +0000 |
commit | 0aa5414015813eda46dbfd7c3bcf259485ac1968 (patch) | |
tree | ba552e8e27c00f0d2d49564ed3dd98b829b04186 /shell/source/backends | |
parent | 13e0ec9f38736557d9b4737298ca9a858919e6e3 (diff) |
cppcheck: noExplicitConstructor
Change-Id: If1ddb112c85f127295eb55566360b066e7173ba2
Reviewed-on: https://gerrit.libreoffice.org/21245
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'shell/source/backends')
-rw-r--r-- | shell/source/backends/wininetbe/wininetbackend.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/source/backends/wininetbe/wininetbackend.cxx b/shell/source/backends/wininetbe/wininetbackend.cxx index e08fc29536af..1069b643bdf9 100644 --- a/shell/source/backends/wininetbe/wininetbackend.cxx +++ b/shell/source/backends/wininetbe/wininetbackend.cxx @@ -43,7 +43,7 @@ namespace { struct Library { HMODULE module; - Library(HMODULE theModule): module(theModule) {} + explicit Library(HMODULE theModule): module(theModule) {} ~Library() { if (module) FreeLibrary(module); } }; |