123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- #ifndef BOOST_BEAST_ZLIB_IMPL_ERROR_HPP
- #define BOOST_BEAST_ZLIB_IMPL_ERROR_HPP
- namespace boost {
- namespace system {
- template<>
- struct is_error_code_enum<::boost::beast::zlib::error>
- {
- static bool const value = true;
- };
- }
- }
- namespace boost {
- namespace beast {
- namespace zlib {
- BOOST_BEAST_DECL
- error_code
- make_error_code(error ev);
- }
- }
- }
- #endif
|