From 6f07805421a186ed333e780033c0fc6dd755c308 Mon Sep 17 00:00:00 2001 From: Michael Carlstrom Date: Fri, 26 Jul 2024 10:26:50 -0400 Subject: [PATCH] use detail:: --- include/pybind11/typing.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/pybind11/typing.h b/include/pybind11/typing.h index 2763239f4..5375659b4 100644 --- a/include/pybind11/typing.h +++ b/include/pybind11/typing.h @@ -136,7 +136,7 @@ class TypeVarObject : public object { using object::object; TypeVarObject(const char *name) { attr("__name__") = name; - attr("__bound__") = NameWrapper(make_caster::name); + attr("__bound__") = NameWrapper(pybind11::detail::make_caster::name); attr("__constraints__") = pybind11::make_tuple(); } // TypeVarObject(const char *name, py::typing::Tuple tuple){