[Lldb-commits] [PATCH] D77153: [lldb/DataFormatters] Display null C++ pointers as nullptr

Shafik Yaghmour via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Tue Mar 31 12:33:11 PDT 2020


shafik added inline comments.


================
Comment at: lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/main.cpp:13
     std::basic_string<unsigned char> uchar(5, 'a');
+    std::string *null = nullptr;
     S.assign(L"!!!!!"); // Set break point at this line.
----------------
How about `string_ptr_null` 


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D77153





More information about the lldb-commits mailing list