diff options
-rw-r--r-- | compiler-rt/lib/sanitizer_common/sanitizer_dense_map.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_dense_map.h b/compiler-rt/lib/sanitizer_common/sanitizer_dense_map.h index c637886..a704997 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_dense_map.h +++ b/compiler-rt/lib/sanitizer_common/sanitizer_dense_map.h @@ -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 { |