[Lldb-commits] [PATCH] D50159: Add byte counting mechanism to LLDB's Stream class.

Jonas Devlieghere via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu Aug 2 02:33:05 PDT 2018


JDevlieghere added inline comments.


================
Comment at: include/lldb/Utility/Stream.h:542
   int m_indent_level; ///< Indention level.
+  std::size_t m_bytes_written = 0; /// The bytes this stream has written so far.
 
----------------
I believe you need the `<` for Doxygen to associate the comment with the var, like the line(s) above.


https://reviews.llvm.org/D50159





More information about the lldb-commits mailing list