have a static function in a header file
class Diagnostics {
public:
static void functionA(){
}
static void functionB(){
some code //works fine until enters the loop below
variable_name // works fine here.
if (condition){ //
variable_name; // after condition is met , i step in here, debugger cannot examine
// the vairable_name which was fine above. right after i try to step over , i get SIGSEV error
some_code; // doesnt even come here. Process exited with SIGSEV
function C(); // tried using classname::functionC , didnt work either
}
}
static void functionC(){
}
variable_nameto be found - it's not mentioned anywhere in the class definition or in preceding code. And I don't see how the process can exit with SIGSEGV if it doesn't compile, which it won't ifvariable_nameisn't found. – Steve Jessop Nov 3 '10 at 4:10variable_name? What issome_code? Where are they defined? Also you're missing return types on your functions. – casablanca Nov 3 '10 at 4:10variable_nameeither... – Mike DeSimone Nov 3 '10 at 4:10