From e933e21e77d4b3c8fe6664b23efe4b0cf151b5da Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Thu, 18 Jul 2024 18:16:12 -0700 Subject: [PATCH] Replace `#include "detail/type_caster_base.h"` with `#include "detail/value_and_holder.h"` in trampoline_self_life_support.h. This was made possible by PR #5251. --- include/pybind11/trampoline_self_life_support.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/pybind11/trampoline_self_life_support.h b/include/pybind11/trampoline_self_life_support.h index b7e1f12c42..47f6239531 100644 --- a/include/pybind11/trampoline_self_life_support.h +++ b/include/pybind11/trampoline_self_life_support.h @@ -6,7 +6,7 @@ #include "detail/common.h" #include "detail/smart_holder_poc.h" -#include "detail/type_caster_base.h" +#include "detail/value_and_holder.h" PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE)