From 63ed9f000be683264e27ba5a22890ddc31a8c347 Mon Sep 17 00:00:00 2001 From: Daniele Rapetti <5535617+Iximiel@users.noreply.github.com> Date: Thu, 27 Jun 2024 10:56:26 +0200 Subject: [PATCH] commented out an #else --- src/wrapper/Plumed.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wrapper/Plumed.h b/src/wrapper/Plumed.h index 6da31082dc..7b2f39cb52 100644 --- a/src/wrapper/Plumed.h +++ b/src/wrapper/Plumed.h @@ -657,7 +657,7 @@ #ifdef __cplusplus #define __PLUMED_WRAPPER_STATIC_CAST(to,what) static_cast(what) #define __PLUMED_WRAPPER_REINTERPRET_CAST(to,what) reinterpret_cast(what) -//reinterpret_cast(const_cast(what))#else +#else #define __PLUMED_WRAPPER_STATIC_CAST(to,what) ((to) what) #define __PLUMED_WRAPPER_REINTERPRET_CAST(to,what) __PLUMED_WRAPPER_STATIC_CAST(to,what)