Author: jankratochvil
Date: Sat Sep 14 08:46:51 2019
New Revision: 371922
URL: http://llvm.org/viewvc/llvm-project?rev=371922&view=rev
Log:
[lldb] Code cleanup: FormattersContainer.h: Use range-based for loops.
Suggested for an other loop by Pavel Labath in:
https://reviews.llvm.org/D6665
jankratochvil marked 9 inline comments as done.
jankratochvil added inline comments.
Comment at: lldb/include/lldb/DataFormatters/FormattersContainer.h:83
+Delete(name);
+m_map.push_back(std::make_pair(std::move(name), std::move(entry)));
if (listener)
--
jankratochvil updated this revision to Diff 220219.
jankratochvil marked 4 inline comments as done.
Repository:
rLLDB LLDB
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D66654/new/
https://reviews.llvm.org/D66654
Files:
lldb/include/lldb/DataFormatters/FormattersContainer.h
lldb/in
jankratochvil created this revision.
jankratochvil added reviewers: labath, JDevlieghere.
jankratochvil added a project: LLDB.
Herald added a subscriber: abidh.
I was writing an SB API client and it was crashing on:
bool DoExecute(SBDebugger dbg, char **command, SBCommandReturnObject &result)