[libc-commits] [libc] [bazel] add missing header to alloc-checker for bazel clib build (PR #173400)

Kyungtak Woo via libc-commits libc-commits at lists.llvm.org
Tue Dec 23 09:28:08 PST 2025


https://github.com/kevinwkt created https://github.com/llvm/llvm-project/pull/173400

None

>From 420a172689f1ad48219299a9cbc608678e8d1f25 Mon Sep 17 00:00:00 2001
From: Kyungtak Woo <kevinwkt1997 at gmail.com>
Date: Tue, 23 Dec 2025 11:27:26 -0600
Subject: [PATCH] add missing header to alloc-checker for clib guild

---
 libc/src/__support/alloc-checker.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libc/src/__support/alloc-checker.h b/libc/src/__support/alloc-checker.h
index ecef094453cc8..a59f9ee34a0ab 100644
--- a/libc/src/__support/alloc-checker.h
+++ b/libc/src/__support/alloc-checker.h
@@ -14,6 +14,7 @@
 #include "src/__support/common.h"
 #include "src/__support/macros/config.h"
 #include "src/__support/macros/properties/os.h"
+#include "src/__support/CPP/new.h"
 
 namespace LIBC_NAMESPACE_DECL {
 



More information about the libc-commits mailing list