diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-07-03 14:04:23 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-07-03 14:04:23 +0200 |
commit | d6b625058404cfc0bbccf8180c27419812f8d7ba (patch) | |
tree | 23c6f2199cc87efef37ff4f15beb1598b6d3bc7d /vcl/qa/cppunit/blocklistparsertest.cxx | |
parent | 1e5e504b2f88fb29a823663fae505863ac00f593 (diff) |
loplugin:oncevar (clang-cl): vcl
Change-Id: I0459978c2cfb61cd7251f0e8d9a30f1f19c02c11
Diffstat (limited to 'vcl/qa/cppunit/blocklistparsertest.cxx')
-rw-r--r-- | vcl/qa/cppunit/blocklistparsertest.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/vcl/qa/cppunit/blocklistparsertest.cxx b/vcl/qa/cppunit/blocklistparsertest.cxx index ddad53b94a27..228e4bad9377 100644 --- a/vcl/qa/cppunit/blocklistparsertest.cxx +++ b/vcl/qa/cppunit/blocklistparsertest.cxx @@ -118,11 +118,11 @@ void BlocklistParserTest::testEvaluate() OUString vendorIntel = WinOpenGLDeviceInfo::GetDeviceVendor(wgl::VendorIntel); OUString vendorMicrosoft = WinOpenGLDeviceInfo::GetDeviceVendor(wgl::VendorMicrosoft); - uint32_t osWindowsXP = 0x00050001; - uint32_t osWindowsVista = 0x00060000; - uint32_t osWindows7 = 0x00060001; - uint32_t osWindows8 = 0x00060002; - uint32_t osWindows10 = 0x000A0000; + uint32_t const osWindowsXP = 0x00050001; + uint32_t const osWindowsVista = 0x00060000; + uint32_t const osWindows7 = 0x00060001; + uint32_t const osWindows8 = 0x00060002; + uint32_t const osWindows10 = 0x000A0000; // Check OS CPPUNIT_ASSERT_EQUAL(true, WinOpenGLDeviceInfo::FindBlocklistedDeviceInList( |