From bb8d9fb4011f9508c64b6ccb95c4d3fe0b18c511 Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Fri, 17 Mar 2017 00:28:23 +0000 Subject: [PATCH] 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 --- unittests/Support/Path.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.11.0