summaryrefslogtreecommitdiff
path: root/src/mongo/util/lru_cache_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/util/lru_cache_test.cpp')
-rw-r--r--src/mongo/util/lru_cache_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/util/lru_cache_test.cpp b/src/mongo/util/lru_cache_test.cpp
index ef24d708828..a8772bc5a93 100644
--- a/src/mongo/util/lru_cache_test.cpp
+++ b/src/mongo/util/lru_cache_test.cpp
@@ -141,7 +141,7 @@ void assertNotInCache(const LRUCache<K, V>& cache, const K& key) {
}
const std::array<int, 7> kTestSizes{1, 2, 3, 4, 5, 10, 1000};
-using SizedTest = stdx::function<void(int)>;
+using SizedTest = std::function<void(int)>;
void runWithDifferentSizes(SizedTest test) {
for (auto size : kTestSizes) {
mongo::unittest::log() << "\t\tTesting cache size of " << size;