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

Schrodinger ZHU Yifan via libc-commits libc-commits at lists.llvm.org
Wed Jan 24 12:09:03 PST 2024


https://github.com/SchrodingerZhu created https://github.com/llvm/llvm-project/pull/79354

It is not fix-sized anymore.

>From fbd64d3066448ba5e7925118a81dee5a1e440819 Mon Sep 17 00:00:00 2001
From: Schrodinger ZHU Yifan <yifanzhu at rochester.edu>
Date: Wed, 24 Jan 2024 15:07:51 -0500
Subject: [PATCH] [libc][NFC] mark hashtable as resizable

---
 libc/src/__support/HashTable/table.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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