Restructured the interdependencies within the BMWlibs (maybe other commits will follow)

This commit is contained in:
Bastian M. Wojek
2011-03-20 18:03:49 +00:00
parent dc86404f88
commit aaa0638729
51 changed files with 60 additions and 3223 deletions

View File

@ -81,7 +81,7 @@ Bool_t PFunctionHandler::DoParse()
// do parsing
tree_parse_info<> info = ast_parse(line.Data(), function, space_p);
if (info.full) { // parsing successfull
if (info.full) { // parsing successful
PFunction func(info); // generate an evaluation function object based on the AST tree
fFuncs.push_back(func); // feeds it to the functions vector
} else {