From ca1a9236ece93e21b37a4370dcf0088c27685643 Mon Sep 17 00:00:00 2001 From: Slobodan Predolac Date: Thu, 28 May 2026 11:20:04 -0400 Subject: [PATCH] Drop umbrella include from src/jemalloc_cpp.cpp Missed in batch 7 -- my filter only matched *.c, not *.cpp. Without this fix, jemalloc_cpp.cpp still tries to include the umbrella (deleted in the previous commit) and the build fails on the C++ target only. Pure follow-up to commit e5f43c9c. --- src/jemalloc_cpp.cpp | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/jemalloc_cpp.cpp b/src/jemalloc_cpp.cpp index ac109bb2..9561ea4f 100644 --- a/src/jemalloc_cpp.cpp +++ b/src/jemalloc_cpp.cpp @@ -7,7 +7,18 @@ extern "C" { #endif #include "jemalloc/internal/jemalloc_preamble.h" -#include "jemalloc/internal/jemalloc_internal_includes.h" + +#include "jemalloc/internal/arena.h" +#include "jemalloc/internal/arena_inlines_b.h" +#include "jemalloc/internal/jemalloc_internal_externs.h" +#include "jemalloc/internal/jemalloc_internal_inlines_a.h" +#include "jemalloc/internal/jemalloc_internal_inlines_b.h" +#include "jemalloc/internal/jemalloc_internal_inlines_c.h" +#include "jemalloc/internal/malloc_io.h" +#include "jemalloc/internal/prof.h" +#include "jemalloc/internal/prof_inlines.h" +#include "jemalloc/internal/tcache.h" +#include "jemalloc/internal/tcache_inlines.h" #ifdef __cplusplus }