[lldb-dev] October LLVM bay-area social is this Thursday!

2017-10-02 Thread George Burgess IV via lldb-dev
We'll be at Tied House as usual, starting on Thursday the 5th at 7pm! If you can, help us plan and RSVP here: http://meetu.ps/3cH44d See everyone there! ___ lldb-dev mailing list lldb-dev@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lld

[lldb-dev] Writing a data formatter for LLDB

2017-10-02 Thread Francois Fayard via lldb-dev
Hi, I would like to write a data formatter for LLDB, for a class which is very close to std::array. Here it is: template class StaticArray { private: T data_[n]; } I wrote the following data formatter adapted from my own “std::vector” data formatter but I still have blanks to fill : class