diff --git a/source/simple/support/tuple_utils/meta_bind.hpp b/source/simple/support/tuple_utils/meta_bind.hpp index 6fe7a5d32dd0e977e10705d440bf817b761ec26c..00a98be97a5423eef75de416ba8b54ef70ef918f 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 {};