[Lldb-commits] [PATCH] D68645: MinidumpYAML: Add support for the memory info list stream
Fangrui Song via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Oct 10 04:14:42 PDT 2019
MaskRay accepted this revision.
MaskRay added inline comments.
================
Comment at: include/llvm/ObjectYAML/MinidumpYAML.h:111
+
+ explicit MemoryInfoListStream(std::vector<minidump::MemoryInfo> Infos)
+ : Stream(StreamKind::MemoryInfoList,
----------------
grimar wrote:
> Maybe be more explicit here, i.e.
>
> ```
> std::vector<minidump::MemoryInfo> &&Infos
> ```
> ?
Or let the constructor take `iterator_range<MinidumpFile::MemoryInfoIterator>` as the argument, and change the call site below.
================
Comment at: include/llvm/ObjectYAML/MinidumpYAML.h:116
+
+ MemoryInfoListStream()
+ : Stream(StreamKind::MemoryInfoList,
----------------
Move default constructor above.
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D68645/new/
https://reviews.llvm.org/D68645
More information about the lldb-commits
mailing list