Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

KDevelop4 Debugging {...} cannot be unfolded

I am debugging with KDevelop4 which is not showing Types always in its variables window and also Its showing {...} instead of unfolding the data. Is there any way to unfold ? and see types of all variables ?

like image 554
Neel Basu Avatar asked Mar 27 '26 02:03

Neel Basu


1 Answers

KDevelop supports gdb pretty printers for prettier showing variable contents. If matrix is your own class you can write a pretty printer yourself. If you use some library you might find pretty printers for it - or write one yourself too.

Note that gdb pretty printers also work when debugging gdb cli.

like image 195
Niko Sams Avatar answered Mar 29 '26 14:03

Niko Sams