[compiler-rt][nfc] DenseMap needs placement new (#133329)

This commit is contained in:
Mircea Trofin 2025-03-27 21:39:12 -07:00 committed by GitHub
parent 96e5ee23a7
commit 4485e25dd2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,6 +19,9 @@
#include "sanitizer_common.h"
#include "sanitizer_dense_map_info.h"
#include "sanitizer_internal_defs.h"
// Placement-new is needed for bucket allocation. This avoids needing to include
// it everywhere we use DenseMap.
#include "sanitizer_placement_new.h"
#include "sanitizer_type_traits.h"
namespace __sanitizer {