diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-09-30 15:27:00 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-09-30 19:37:32 +0100 |
commit | 9e481f6036775044bb02a5e08f6d3af3a37acc56 (patch) | |
tree | 8221f2ef6c312d5fc43a5924730d3c2a8b26064c | |
parent | 80c4130367d0bbd527b8cec1bd10e4e72c453647 (diff) |
cppcheck: uninitMemberVar
Change-Id: I8409a6f00803e357a20b53fd59d77f155e057753
-rw-r--r-- | vcl/opengl/win/blocklist_parser.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/vcl/opengl/win/blocklist_parser.cxx b/vcl/opengl/win/blocklist_parser.cxx index ef4771ab37f9..b132265349a4 100644 --- a/vcl/opengl/win/blocklist_parser.cxx +++ b/vcl/opengl/win/blocklist_parser.cxx @@ -10,9 +10,10 @@ #include "blocklist_parser.hxx" WinBlocklistParser::WinBlocklistParser(const OUString& rURL, - std::vector<wgl::DriverInfo>& rDriverList): - maURL(rURL), - mrDriverList(rDriverList) + std::vector<wgl::DriverInfo>& rDriverList) + : maURL(rURL) + , mrDriverList(rDriverList) + , meBlockType(BlockType::UNKNOWN) { } |