removed bad semicolon at the end of a "{}" bloc which is not a class/template.
Debugged using g++ flags (see CMakeLists.txt at the root)
This commit is contained in:
parent
f3e1e35ea3
commit
5cbbe83a0e
6 changed files with 7 additions and 7 deletions
|
|
@ -58,7 +58,7 @@ double sextic_polynomial(double x)
|
|||
double result=0;
|
||||
result = pow(x,6) - (2*pow(x,4)) + pow(x,2);
|
||||
return result;
|
||||
};
|
||||
}
|
||||
|
||||
// we use the following functions for the basic math functions
|
||||
|
||||
|
|
@ -158,7 +158,7 @@ void init(vector<Node> &initSequence)
|
|||
initSequence.push_back( OpDIVIDE );
|
||||
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -334,7 +334,7 @@ int main(int argc, char *argv[])
|
|||
|
||||
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Reference in a new issue