File diff r7931:4c17a74c399e → r7932:6b853bdb39ea
src/macros.h
Show inline comments
 
@@ -279,9 +279,9 @@ template<typename T> static inline T Clr
 
 * @param y The bit position to toggle
 
 * @return The new value of the old value with the bit toggled
 
 */
 
template<typename T> static inline T TOGGLEBIT(T& x, const uint8 y)
 
template<typename T> static inline T ToggleBit(T& x, const uint8 y)
 
{
 
	return x ^= (T)1U << y;
 
	return x = (T)(x ^ (T)(1U << y));
 
}