reznikmm / protobuf

The Google Protocol Buffers implementation in Ada
MIT License
32 stars 5 forks source link

GDB pretty printer for vectors #22

Closed mgrojo closed 1 year ago

mgrojo commented 1 year ago

It would be nice to have a GDB pretty printer for vectors, as there is one for League Universal_String or for Ada containers. Currently, when printing a variable containing some repeated fields, only the address is printed for those fields. Although one can print those fields individually after dereference, which shows a readable output, doing it for each repeated field in a record is a bit laborious.

mgrojo commented 1 year ago

It works now like a charm.