[libc-commits] [libc] 22c22d6 - [libc][NFC] mark hashtable as resizable (#79354)

via libc-commits libc-commits at lists.llvm.org
Wed Jan 24 12:18:44 PST 2024


Author: Schrodinger ZHU Yifan
Date: 2024-01-24T15:18:40-05:00
New Revision: 22c22d6182e0ee456ff1141be8e178ede6df47bb

URL: https://github.com/llvm/llvm-project/commit/22c22d6182e0ee456ff1141be8e178ede6df47bb
DIFF: https://github.com/llvm/llvm-project/commit/22c22d6182e0ee456ff1141be8e178ede6df47bb.diff

LOG: [libc][NFC] mark hashtable as resizable (#79354)

It is not fix-sized anymore.

Added: 
    

Modified: 
    libc/src/__support/HashTable/table.h

Removed: 
    


################################################################################
diff  --git a/libc/src/__support/HashTable/table.h b/libc/src/__support/HashTable/table.h
index 288829b1cac977e..5b4697e5245b6d1 100644
--- a/libc/src/__support/HashTable/table.h
+++ b/libc/src/__support/HashTable/table.h
@@ -1,4 +1,4 @@
-//===-- Fix-sized Monotonic HashTable ---------------------------*- C++ -*-===//
+//===-- Resizable Monotonic HashTable ---------------------------*- C++ -*-===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.


        


More information about the libc-commits mailing list