display disabled to avoid infinite recursion
"Giso Dal" <[email protected]>
| Newsgroups | gmane.comp.debugging.ddd.general |
|---|---|
| Message-ID | <[email protected]> |
I've written a program (C++) and want to debug it. i would like to display
the array of pointers created below (and filled out in a later state
correctly),
but every time i want to display the ()->next, i get the message: disabling
display X to avoid infinite recursion. what causes this and how do i avoid
it.
int **C;
C = new int *[m];
for(int i = 0; i < m; i++)
C[i] = new int [n];
thanks
_______________________________________________
Ddd mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/ddd