Commit 399b1b84 authored by Dominik Charousset's avatar Dominik Charousset

fixed tl_filter_type

parent a6c9e6f0
......@@ -795,7 +795,7 @@ struct tl_filter_type;
template<class Type, typename... T>
struct tl_filter_type<type_list<T...>, Type> {
typedef typename tl_filter_impl<type_list<T...>, std::is_same<T, Type>::value...>::type type;
typedef typename tl_filter_impl<type_list<T...>, !std::is_same<T, Type>::value...>::type type;
};
/**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment