Closed jrpretz closed 7 years ago
Teensy issue with xcdf/utility/NumericalExpression.h
This code fails to compile with complaints about missing definition of XCDFPtr. `
int main(){} `
Adding
`
` to the top of NumericalExpression.h is all that's needed to fix it.
It's a small thing, I just assume that we want an include file to itself include everything needed for it.
Teensy issue with xcdf/utility/NumericalExpression.h
This code fails to compile with complaints about missing definition of XCDFPtr. `
include <xcdf/utility/NumericalExpression.h>
int main(){} `
Adding
`
include <xcdf/XCDFPtr.h>
` to the top of NumericalExpression.h is all that's needed to fix it.
It's a small thing, I just assume that we want an include file to itself include everything needed for it.