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 b436488 commit 0dd8f32Copy full SHA for 0dd8f32
llvm/include/llvm/ADT/ConcurrentHashtable.h
@@ -253,9 +253,8 @@ class ConcurrentHashTableByPtr {
253
254
OS << "\nOverall number of entries = " << OverallNumberOfEntries;
255
OS << "\nOverall number of non empty buckets = " << NumberOfNonEmptyBuckets;
256
- for (auto &BucketSize : BucketSizesMap)
257
- OS << "\n Number of buckets with size " << BucketSize.first << ": "
258
- << BucketSize.second;
+ for (auto [Size, Count] : BucketSizesMap)
+ OS << "\n Number of buckets with size " << Size << ": " << Count;
259
260
std::stringstream stream;
261
stream << std::fixed << std::setprecision(2)
0 commit comments