> On Oct 2, 2017, at 9:25 AM, Francois Fayard via lldb-dev
> wrote:
>
> 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 fo
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