Kaydet (Commit) 70fd98f1 authored tarafından Michael Stahl's avatar Michael Stahl

vcl: type inference is beyond MSVC's limited abilities

Change-Id: I3e6c84c1f49e9523e881ce12dbb2f7e0d1df956e
üst 5f6065f9
......@@ -39,8 +39,8 @@ void BlocklistParserTest::testParse()
WinBlocklistParser aBlocklistParser(getURLFromSrc("vcl/qa/cppunit/") + "test_blocklist_parse.xml", aDriveInfos);
aBlocklistParser.parse();
auto const n = aDriveInfos.size();
CPPUNIT_ASSERT_EQUAL(static_cast<decltype(n)>(20), n);
size_t const n = aDriveInfos.size();
CPPUNIT_ASSERT_EQUAL(static_cast<size_t>(20), n);
size_t i = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment