RE: XCode 4.2 debugger fails to show proper local variable states
RE: XCode 4.2 debugger fails to show proper local variable states
- Subject: RE: XCode 4.2 debugger fails to show proper local variable states
- From: Dan Stenning <email@hidden>
- Date: Tue, 15 Nov 2011 14:28:01 +0000
- Importance: Normal
From: email@hidden To: email@hidden
ok heres the code in question:
this code sits in the “clicked” event of a button control.
void Window1_BevelButton1::ON_Action() {
int x;
x = 2;
x = x+1;
x= x+1;
int y = 665;
debby = x; // ( debby is a member property of class Window1_BevelButton1 )
x = 999;
debby = y;
Class1* i = new Class1();
y = x;
debby = debby+1;
debby = y;
Class3* j = new Class3;
j->doSomething();
j = NULL;
i = NULL; }
Ive also been trying just switching to the old GDB etc, but get the same problem.
> Subject: Re: XCode 4.2 debugger fails to show proper local variable states > From: email@hidden
> Have you tried it with gdb? lldb doesn't feel finished to me, especially for C++. > > If you could show some code that evidences the problem, we might be able to help more.
|
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden