is_derived_from_instantiation fixed

This commit is contained in:
Mateusz Pusz
2019-12-17 22:18:52 +01:00
parent 589e26fa81
commit bc8c31caa5

View File

@@ -67,7 +67,7 @@ template<template<typename...> typename Type>
struct is_derived_from_instantiation_impl { struct is_derived_from_instantiation_impl {
template<typename... Params> template<typename... Params>
static constexpr std::true_type check_base(const Type<Params...>&); static constexpr std::true_type check_base(const Type<Params...>&);
static constexpr std::true_type check_base(...); static constexpr std::false_type check_base(...);
}; };
} // namespace detail } // namespace detail