123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- // this must occur after all of the includes and before any code appears
- ///////////////////////////////////////////////////////////////////////////////
- namespace boost {
- namespace wave {
- namespace grammars {
- ///////////////////////////////////////////////////////////////////////////////
- //
- // value_error enum type
- //
- // This is used to encode any error occurred during the evaluation of a
- // conditional preprocessor expression
- //
- ///////////////////////////////////////////////////////////////////////////////
- enum value_error {
- error_noerror = 0x0,
- error_division_by_zero = 0x1,
- error_integer_overflow = 0x2,
- error_character_overflow = 0x4
- };
- ///////////////////////////////////////////////////////////////////////////////
- } // namespace grammars
- } // namespace wave
- } // namespace boost
- // the suffix header occurs after all of the code
|