12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef BOOST_BEAST_TEST_ERROR_HPP
- #define BOOST_BEAST_TEST_ERROR_HPP
- #include <boost/beast/core/detail/config.hpp>
- #include <boost/beast/core/error.hpp>
- namespace boost {
- namespace beast {
- namespace test {
- enum class error
- {
-
- test_failure = 1
- };
- }
- }
- }
- #include <boost/beast/_experimental/test/impl/error.hpp>
- #ifdef BOOST_BEAST_HEADER_ONLY
- #include <boost/beast/_experimental/test/impl/error.ipp>
- #endif
- #endif
|