1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-10-05 13:00:00 +00:00

fix generator implementation

This commit is contained in:
bolero-MURAKAMI 2012-09-30 11:09:44 +09:00
commit b0ce004b36
3 changed files with 119 additions and 111 deletions

View file

@ -23,7 +23,7 @@ namespace sprout {
//
template<typename T>
struct is_found_via_adl
: public std::integral_constant<bool, sprout::is_not_found_via_adl<T>::value>
: public std::integral_constant<bool, !sprout::is_not_found_via_adl<T>::value>
{};
} // namespace sprout