[Lldb-commits] [PATCH] D127937: [lldb] Add RotatingLogHandler
Dave Lee via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Jun 16 11:08:31 PDT 2022
kastiglione added inline comments.
================
Comment at: lldb/include/lldb/Utility/Log.h:98
+
+ std::vector<std::string> m_messages;
+ size_t m_next_index = 0;
----------------
this could be an array, since it's not being dynamically resized.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D127937/new/
https://reviews.llvm.org/D127937
More information about the lldb-commits
mailing list