escape those newlines

This commit is contained in:
Putnam
2020-09-29 06:12:10 -07:00
parent 8704949694
commit 0aec88eaed
+1 -1
View File
@@ -10,7 +10,7 @@
#define CHECK_BITFIELD(variable, flag) (variable & (flag))
#define TOGGLE_BITFIELD(variable, flag) (variable ^= (flag))
#define COPY_SPECIFIC_BITFIELDS(a,b,flags)\
do{
do{\
var/_old = a & ~(flags);\
var/_cleaned = b & (flags);\
a = _old | _cleaned;\