X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftypes.h;h=e08fc8534e818e57c7459509758977081efd1ece;hp=a648e6514ed67dd906d3a71dde7270e3a2a97514;hb=d3947b2f3e4121db67aef6845b59562b1cec0665;hpb=a71209868bdd8361d0607acf7725f70e9d1f2019 diff --git a/src/types.h b/src/types.h index a648e651..e08fc853 100644 --- a/src/types.h +++ b/src/types.h @@ -274,9 +274,9 @@ inline T operator-(const T d1, const T d2) { return T(int(d1) - int(d2)); } \ inline T operator*(int i, const T d) { return T(i * int(d)); } \ inline T operator*(const T d, int i) { return T(int(d) * i); } \ inline T operator-(const T d) { return T(-int(d)); } \ -inline T& operator+=(T& d1, const T d2) { d1 = d1 + d2; return d1; } \ -inline T& operator-=(T& d1, const T d2) { d1 = d1 - d2; return d1; } \ -inline T& operator*=(T& d, int i) { d = T(int(d) * i); return d; } +inline T& operator+=(T& d1, const T d2) { return d1 = d1 + d2; } \ +inline T& operator-=(T& d1, const T d2) { return d1 = d1 - d2; } \ +inline T& operator*=(T& d, int i) { return d = T(int(d) * i); } #define ENABLE_OPERATORS_ON(T) ENABLE_SAFE_OPERATORS_ON(T) \ inline T& operator++(T& d) { return d = T(int(d) + 1); } \