Debugger: Fix std::unordered_{map,set} dumper for LLDB on Linux

Change-Id: Id96d02cddcccdd7765e5a098bb98f894122781a1
Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
hjk
2015-04-14 14:18:17 +02:00
parent f9ae887ae7
commit e452ebde97
2 changed files with 13 additions and 14 deletions

View File

@@ -4372,12 +4372,12 @@ void tst_Dumpers::dumper_data()
"std::unordered_map<unsigned int, unsigned int> map1;\n"
"map1[11] = 1;\n"
"map1[22] = 2;\n"
"unused(&map1);\n\n"
"std::unordered_map<std::string, float> map2;\n"
"map2[\"11.0\"] = 11.0;\n"
"map2[\"22.0\"] = 22.0;\n"
"unused(&map1);\n")
"unused(&map2);\n")
+ Cxx11Profile()