From 325f1ad731d7fecb7cd97378c49b6a323d684fd6 Mon Sep 17 00:00:00 2001 From: Frank Park Date: Tue, 11 Apr 2017 01:40:38 -0400 Subject: [PATCH] fix typo --- include/sqlpp11/type_traits.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/sqlpp11/type_traits.h b/include/sqlpp11/type_traits.h index 5e5056f6..6d78edf0 100644 --- a/include/sqlpp11/type_traits.h +++ b/include/sqlpp11/type_traits.h @@ -535,7 +535,7 @@ namespace sqlpp using serializer_context_of = typename serializer_context_of_impl::type; template - struct in_invocable + struct is_invocable { template static auto test(U* p) -> decltype((*p)(std::declval()...), void(), std::true_type()); template static auto test(...) -> decltype(std::false_type());