File indexing completed on 2025-12-16 09:43:59
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef BOOST_BEAST_HTTP_IMPL_ERROR_HPP
0011 #define BOOST_BEAST_HTTP_IMPL_ERROR_HPP
0012
0013 #include <type_traits>
0014
0015 namespace boost {
0016 namespace system {
0017 template<>
0018 struct is_error_code_enum<::boost::beast::http::error>
0019 {
0020 static bool const value = true;
0021 };
0022 }
0023 }
0024
0025 namespace boost {
0026 namespace beast {
0027 namespace http {
0028
0029 BOOST_BEAST_DECL
0030 error_code
0031 make_error_code(error ev);
0032
0033 }
0034 }
0035 }
0036
0037 #endif