123456789101112131415161718192021222324252627282930313233343536 |
- ///////////////////////////////////////////////////////////////////////////////
- //
- // BOOST_SPIRIT_ASSERT is used throughout the framework. It can be
- // overridden by the user. If BOOST_SPIRIT_ASSERT_EXCEPTION is defined,
- // then that will be thrown, otherwise, BOOST_SPIRIT_ASSERT simply turns
- // into a plain BOOST_ASSERT()
- //
- ///////////////////////////////////////////////////////////////////////////////
-
-
-
-
- ( (x) ? (void)0 : boost::throw_exception( \
- BOOST_SPIRIT_ASSERT_EXCEPTION(f "("
-
-
-
|