/*============================================================================= Copyright (c) 2011-2013 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) =============================================================================*/ #ifndef SPROUT_ADL_NOT_FOUND_HPP #define SPROUT_ADL_NOT_FOUND_HPP #include #include #include namespace sprout { // // not_found_via_adl // struct not_found_via_adl {}; // // is_not_found_via_adl // template struct is_not_found_via_adl : public sprout::is_same {}; template struct is_not_found_via_adl : public sprout::is_not_found_via_adl {}; template struct is_not_found_via_adl : public sprout::is_not_found_via_adl {}; template struct is_not_found_via_adl : public sprout::is_not_found_via_adl {}; // // is_found_via_adl // template struct is_found_via_adl : public sprout::integral_constant::value> {}; } // namespace sprout #endif // #ifndef SPROUT_ADL_NOT_FOUND_HPP