Skip to content

Commit cfc9f36

Browse files
committed
Revert "[lldb] Silence narrowing conversion warning with MSVC"
This reverts commit cb67dc1.
1 parent a58ad3e commit cfc9f36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/unittests/DataFormatter/StringPrinterTests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ TEST(StringPrinterTests, CxxASCII) {
7272
EXPECT_EQ(fmt("🥑"), QUOTE("🥑"));
7373

7474
// Octal (\nnn), hex (\xnn), extended octal (\unnnn or \Unnnnnnnn).
75-
EXPECT_EQ(fmt(L"\uD55C"), QUOTE(L"\uD55C"));
75+
EXPECT_EQ(fmt("\uD55C"), QUOTE("\uD55C"));
7676
EXPECT_EQ(fmt("\U00010348"), QUOTE("\U00010348"));
7777

7878
EXPECT_EQ(fmt("\376"), QUOTE(R"(\xfe)")); // \376 is 254 in decimal.

0 commit comments

Comments
 (0)