summaryrefslogtreecommitdiff
path: root/src/mongo/util/functional.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/util/functional.h')
-rw-r--r--src/mongo/util/functional.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/util/functional.h b/src/mongo/util/functional.h
index c30089a64e9..ca968ea9ca6 100644
--- a/src/mongo/util/functional.h
+++ b/src/mongo/util/functional.h
@@ -95,7 +95,7 @@ public:
// requirements are met. They must be concrete parameters not template parameters to work
// around bugs in some compilers that we presently use. We may be able to revisit this
// design after toolchain upgrades for C++17.
- std::enable_if_t<stdx::is_invocable_r<RetType, Functor, Args...>::value, TagType> =
+ std::enable_if_t<std::is_invocable_r<RetType, Functor, Args...>::value, TagType> =
makeTag(),
std::enable_if_t<std::is_move_constructible<Functor>::value, TagType> = makeTag(),
std::enable_if_t<!std::is_same<std::decay_t<Functor>, unique_function>::value, TagType> =