mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-08-23 14:20:52 +00:00
fix adl/not_found
This commit is contained in:
parent
b0ce004b36
commit
d76d714816
5 changed files with 132 additions and 89 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue