From 59aa8c3a9a5e20c9363227e034cfbe0fe5054d86 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Mon, 29 Jul 2024 00:14:22 -0700 Subject: [PATCH] clang-tidy auto-fix --- include/pybind11/stl/filesystem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/pybind11/stl/filesystem.h b/include/pybind11/stl/filesystem.h index cee9c05d96..b877a01de9 100644 --- a/include/pybind11/stl/filesystem.h +++ b/include/pybind11/stl/filesystem.h @@ -37,7 +37,7 @@ PYBIND11_NAMESPACE_BEGIN(detail) # define PYBIND11_REINTERPRET_CAST_VOID_PTR_IF_NOT_PYPY(...) #else # define PYBIND11_REINTERPRET_CAST_VOID_PTR_IF_NOT_PYPY(...) \ - reinterpret_cast(__VA_ARGS__) + (reinterpret_cast(__VA_ARGS__)) #endif #if defined(PYBIND11_HAS_FILESYSTEM) || defined(PYBIND11_HAS_EXPERIMENTAL_FILESYSTEM)