ddd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

display disabled to avoid infinite recursion


From: Giso Dal
Subject: display disabled to avoid infinite recursion
Date: Tue, 29 Apr 2008 16:29:34 +0200

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

reply via email to

[Prev in Thread] Current Thread [Next in Thread]