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:
tlegrand 2008-01-15 13:53:18 +00:00
commit 5cbbe83a0e
6 changed files with 7 additions and 7 deletions

View file

@ -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 );
};
}

View file

@ -334,7 +334,7 @@ int main(int argc, char *argv[])
};
}