Debugger doesn't stop in template method?
Debugger doesn't stop in template method?
- Subject: Debugger doesn't stop in template method?
- From: Jim Correia <email@hidden>
- Date: Tue, 13 Jan 2004 17:03:02 -0500
I have a template class.
template<class T>
OSErr Foo<T>::Bar(Baz<T> &aBaz)
{
char *str = nil;
doSomething();
doSomethingElse();
}
If I set a breakpoint inside that function the debugger doesn't stop.
(It doesn't warn me in the console that it couldn't set the breakpoint
either.)
The file does have debug info - if I stop in doSomething I can step
until it exits and back up into Foo::Bar.
Is this a known problem? Is there a workaround? (Do I need to build a
sample project that shows the problem and write up a radar issue?)
Thanks,
Jim
_______________________________________________
xcode-users mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/xcode-users
Do not post admin requests to the list. They will be ignored.