jimbraun / XCDF

XCDF: eXplicitly Compacted Data Format. See documentation at Read the Docs:
https://xcdf.readthedocs.io/en/latest/
Other
14 stars 8 forks source link

xcdf/utility/NumericalExpression.h include issue #80

Closed jrpretz closed 7 years ago

jrpretz commented 7 years ago

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.