From 91ed9de7939dde537bf0deb01af936e2c8aff2ae Mon Sep 17 00:00:00 2001 From: namark <namark@disroot.org> Date: Sat, 22 May 2021 14:09:03 +0400 Subject: [PATCH] stupid typo --- source/simple/support/tuple_utils/meta_bind.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/simple/support/tuple_utils/meta_bind.hpp b/source/simple/support/tuple_utils/meta_bind.hpp index 6fe7a5d..00a98be 100644 --- a/source/simple/support/tuple_utils/meta_bind.hpp +++ b/source/simple/support/tuple_utils/meta_bind.hpp @@ -41,7 +41,7 @@ namespace simple::support struct has_meta_bindings<T, // NOTE: is_object here is not checked, just serves as a type context, // to fail if binding are not defined at all. - // can't use decltype as you can't just put anything in a tuple apparently: + // can't use declval as you can't just put anything in a tuple apparently: // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92570 decltype(std::is_object_v<typename T::bindings>, nullptr)> : std::true_type {}; -- GitLab