G
guy
If I have a break point at the end of a function, how do I determine what
the return value of the function is if it's not in a local variable - for
e.g. one function is returning a call to another function:
bool func1()
{
return func2();
}
Thanks
the return value of the function is if it's not in a local variable - for
e.g. one function is returning a call to another function:
bool func1()
{
return func2();
}
Thanks