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.
This commit is contained in:
Slobodan Predolac 2026-05-28 11:20:04 -04:00 committed by Slobodan Predolac
parent 7a9f6dc34c
commit ca1a9236ec

View file

@ -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
}