fix generator implementation

This commit is contained in:
bolero-MURAKAMI 2012-09-30 11:09:44 +09:00
parent da86582643
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