WIP: invoke c++17 rework

This commit is contained in:
2021-10-04 21:13:30 +03:00
parent a436935d89
commit 19d1fc6890
3 changed files with 11 additions and 7 deletions
+1 -1
View File
@@ -265,7 +265,7 @@ namespace meta {
//! @{
namespace back_impl {
template <typename List>
struct back_ { };
struct back_ { using type = nil_; };
template <typename Head, typename... Tail>
struct back_<typelist<Head, Tail...>> {
+5 -4
View File
@@ -21,7 +21,7 @@
//! @{
namespace utl {
#if !defined __cpp_lib_is_invocable
//#if !defined __cpp_lib_is_invocable
namespace detail {
template <class T>
@@ -216,9 +216,10 @@ namespace utl {
>;
//! @}
#else
#endif
//#else
//using is_invocable = std::is_invocable;
//
//#endif
}
//! @}