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;