fix adl/not_found

This commit is contained in:
bolero-MURAKAMI 2012-10-04 23:25:28 +09:00
parent b0ce004b36
commit d76d714816
5 changed files with 132 additions and 89 deletions

View file

@ -17,6 +17,18 @@ namespace sprout {
struct is_not_found_via_adl
: public std::is_same<T, sprout::not_found_via_adl>
{};
template<typename T>
struct is_not_found_via_adl<T const>
: public sprout::is_not_found_via_adl<T>
{};
template<typename T>
struct is_not_found_via_adl<T volatile>
: public sprout::is_not_found_via_adl<T>
{};
template<typename T>
struct is_not_found_via_adl<T const volatile>
: public sprout::is_not_found_via_adl<T>
{};
//
// is_found_via_adl