Drop support for deprecated associative containers
[folly.git] / folly / test / AtomicHashMapTest.cpp
index 6fb8d84f2d91fb6fc7e44d91054e95245427d63c..e3f3ab003e60e8f82dc81270ec5fb0a42332d3ec 100644 (file)
@@ -403,7 +403,7 @@ namespace {
 inline KeyT randomizeKey(int key) {
   // We deterministically randomize the key to more accurately simulate
   // real-world usage, and to avoid pathalogical performance patterns (e.g.
-  // those related to __gnu_cxx::hash<int64_t>()(1) == 1).
+  // those related to std::hash<int64_t>()(1) == 1).
   //
   // Use a hash function we don't normally use for ints to avoid interactions.
   return folly::hash::jenkins_rev_mix32(key);