12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #ifndef BOOST_REDIS_IGNORE_HPP
- #define BOOST_REDIS_IGNORE_HPP
- #include <boost/system/result.hpp>
- #include <tuple>
- #include <type_traits>
- namespace boost::redis
- {
- using ignore_t = std::decay_t<decltype(std::ignore)>;
- extern ignore_t ignore;
- }
- #endif
|