From da2034c5898928c1bb4b636959adced6dc4425f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emmanuel=20Beno=C3=AEt?= Date: Sat, 15 Dec 2018 20:40:37 +0100 Subject: [PATCH] Utilities - M_UNUSED macro --- include/ebcl/Utilities.hh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/ebcl/Utilities.hh b/include/ebcl/Utilities.hh index 34313be..eba08c0 100644 --- a/include/ebcl/Utilities.hh +++ b/include/ebcl/Utilities.hh @@ -234,6 +234,9 @@ struct UseTag /*= MACRO HORRORS ============================================================*/ +// M_UNUSED( Var ) - Macro for unused variables +#define M_UNUSED( Var ) ((void)Var) + // M_LSHIFT_OP( Type , Target ) - Declare a left-shift operator using the // specified types #define M_LSHIFT_OP( Type , Target ) \