[Lldb-commits] [PATCH] D57273: Make Type::GetByteSize optional

Greg Clayton via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Jan 28 08:43:34 PST 2019


clayborg added inline comments.


================
Comment at: include/lldb/Symbol/Type.h:221
+  uint64_t m_byte_size : 63;
+  unsigned m_byte_size_has_value : 1;
   Declaration m_decl;
----------------
Does this need to be uint64_t to share the same space as m_byte_size?


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D57273/new/

https://reviews.llvm.org/D57273





More information about the lldb-commits mailing list