We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c21f48e commit d950157Copy full SHA for d950157
lldb/unittests/Core/DumpDataExtractorTest.cpp
@@ -137,7 +137,7 @@ TEST_F(DumpDataExtractorTest, Formats) {
137
TestDump('?', lldb::eFormatChar, "'?'");
138
TestDump('\x1A', lldb::eFormatCharPrintable, ".");
139
TestDump('#', lldb::eFormatCharPrintable, "#");
140
- TestDump(std::complex<float>(1.2, 3.4), lldb::eFormatComplex, "1.2 + 3.4i");
+ TestDump(std::complex<float>(1.2f, 3.4f), lldb::eFormatComplex, "1.2 + 3.4i");
141
TestDump(std::complex<double>(4.5, 6.7), lldb::eFormatComplex, "4.5 + 6.7i");
142
143
// long double is not tested here because for some platforms we treat it as 10
0 commit comments