View Single Post
Old 06-25-2009, 12:20 PM   #6 (permalink)
rajukgp
Registered User
 
Join Date: Sep 2008
Posts: 17
OS: Linux,Max,Windows


Re: Issue with Windows dev setup .Net (2003)

File: Existing.cpp

#include <darwin_header.h>

void function1()
{
function2() ; //defined in darwin_header.h
}


File: darwin_header.h

declaration
void function2();

File : darwin_header.cpp

#include <darwin_header.h>

void function2()
{
//function definition.
}


Now when I try to debug Existing.cpp, debugger is not able to understand any break point on the function function1().But if I comment function2() then I am able to debug function1().

Thanks in advance for all help.
-R
rajukgp is offline   Reply With Quote