[Lldb-commits] [PATCH] D129962: [LLDB][DataFormatter] Add support for std::__map_const_iterator
Adrian Prantl via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Jul 21 06:07:06 PDT 2022
aprantl accepted this revision.
aprantl added inline comments.
This revision is now accepted and ready to land.
================
Comment at: lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/map/main.cpp:30
+ intint_map::const_iterator const_it = ii.cbegin();
+ std::printf("%d %d", it->second, const_it->second);
+
----------------
I know this is just a test, but maybe add a `\n` at the end?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D129962/new/
https://reviews.llvm.org/D129962
More information about the lldb-commits
mailing list