From: Zachary Turner Date: Fri, 17 Mar 2017 00:28:23 +0000 (+0000) Subject: SmallString doesn't have implicit conversion from const char*. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bb8d9fb4011f9508c64b6ccb95c4d3fe0b18c511;p=llvm SmallString doesn't have implicit conversion from const char*. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@298019 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/Support/Path.cpp b/unittests/Support/Path.cpp index 042cd1eef08..edda1cd6d24 100644 --- a/unittests/Support/Path.cpp +++ b/unittests/Support/Path.cpp @@ -1064,8 +1064,8 @@ TEST(Support, NormalizePath) { Tests.emplace_back("a\\", "a\\", "a/"); for (auto &T : Tests) { - SmallString<64> Win = std::get<0>(T); - SmallString<64> Posix = Win; + SmallString<64> Win(std::get<0>(T)); + SmallString<64> Posix(Win); path::native(Win, path::Style::windows); path::native(Posix, path::Style::posix); EXPECT_EQ(std::get<1>(T), Win);