From ec8b8b68c7720046644824b394a128502d52d1e3 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" <rwgk@google.com> Date: Wed, 22 Jun 2022 08:28:03 -0700 Subject: [PATCH] Remove comments that are (now) more distracting than helpful. --- include/pybind11/cast.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/pybind11/cast.h b/include/pybind11/cast.h index 3097b0bb4..139363c57 100644 --- a/include/pybind11/cast.h +++ b/include/pybind11/cast.h @@ -50,7 +50,7 @@ class type_caster : public type_caster_for_class_<type> {}; template <typename type> using make_caster = type_caster_odr_guard<intrinsic_t<type>, type_caster<intrinsic_t<type>>>; -#else // !PYBIND11_TYPE_CASTER_ODR_GUARD_ON +#else template <typename type> using make_caster = type_caster<intrinsic_t<type>>; @@ -149,7 +149,7 @@ public: = ::pybind11::detail::tu_local_const_name(__FILE__ ":" PYBIND11_TOSTRING(__LINE__)); \ PYBIND11_DETAIL_TYPE_CASTER_TAIL(type) -#else // !PYBIND11_TYPE_CASTER_ODR_GUARD_ON +#else # define PYBIND11_TYPE_CASTER(type, py_name) \ PYBIND11_DETAIL_TYPE_CASTER_HEAD(type, py_name) \