We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0739328 commit dc242ccCopy full SHA for dc242cc
absl/container/internal/raw_hash_set.h
@@ -2390,13 +2390,13 @@ class raw_hash_set {
2390
// s.insert({"abc", 42});
2391
std::pair<iterator, bool> insert(init_type&& value)
2392
ABSL_ATTRIBUTE_LIFETIME_BOUND
2393
-#if __cplusplus >= 202002L
+#if ABSL_INTERNAL_CPLUSPLUS_LANG >= 202002L
2394
requires(!IsLifetimeBoundAssignmentFrom<init_type>::value)
2395
#endif
2396
{
2397
return emplace(std::move(value));
2398
}
2399
2400
std::pair<iterator, bool> insert(
2401
init_type&& value ABSL_INTERNAL_ATTRIBUTE_CAPTURED_BY(this))
2402
0 commit comments