From 9c5601db3c01e9d39da31189816fdfc58c99f8d5 Mon Sep 17 00:00:00 2001 From: greg Date: Mon, 28 Feb 2022 15:55:12 -0500 Subject: [PATCH] fix previous fix --- parallel_hashmap/phmap_base.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parallel_hashmap/phmap_base.h b/parallel_hashmap/phmap_base.h index a297dcd..3320f5d 100644 --- a/parallel_hashmap/phmap_base.h +++ b/parallel_hashmap/phmap_base.h @@ -329,7 +329,7 @@ template using underlying_type_t = typename std::underlying_type::type; template< class F, class... ArgTypes> -#if defined(PHMAP_HAVE_CC17) && defined(__cpp_lib_result_of_sfinae) +#if PHMAP_HAVE_CC17 && defined(__cpp_lib_result_of_sfinae) using invoke_result_t = typename std::invoke_result_t; #else using invoke_result_t = typename std::result_of::type;