From deb3e45791f0687cf78db8900011a1d4f6513455 Mon Sep 17 00:00:00 2001 From: Jonas Trappenberg Date: Tue, 20 Jan 2015 20:26:33 -0800 Subject: [PATCH] More code style fixes --- include/lmms_basics.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/lmms_basics.h b/include/lmms_basics.h index a0c8274d4..ea02f77d1 100644 --- a/include/lmms_basics.h +++ b/include/lmms_basics.h @@ -78,9 +78,9 @@ struct typeInfo return 1; } - static inline bool isEqual( T _x, T _y ) + static inline bool isEqual( T x, T y ) { - return _x == _y; + return x == y; } static inline T absVal( T t )