[Lldb-commits] [lldb] [lldb][SymbolFileDWARFDebugMap] Introduce enum to indicate whether to continue iteration of object files (PR #87344)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Tue Apr 2 09:02:31 PDT 2024
================
@@ -1339,6 +1339,13 @@ enum AddressMaskRange {
eAddressMaskRangeAll = eAddressMaskRangeAny,
};
+/// Useful for callbacks whose return type indicates
+/// whether to continue iteration or short-circuit.
+enum class IterationMarker {
----------------
Michael137 wrote:
Maybe `IterationAction` could be better? @jimingham @clayborg Any thoughts?
https://github.com/llvm/llvm-project/pull/87344
More information about the lldb-commits
mailing list