Skip to content

Commit

Permalink
Fix whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
sunfishcode committed Nov 25, 2024
1 parent 76177b6 commit 3f21344
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/binary-reader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,17 @@
#include <alloca.h>
#endif

#define ERROR(...) \
do { \
#define ERROR(...) \
do { \
PrintError(__VA_ARGS__); \
return Result::Error; \
} while (0)

#define ERROR_IF(expr, ...) \
do { \
if (expr) { \
ERROR(__VA_ARGS__); \
} \
#define ERROR_IF(expr, ...) \
do { \
if (expr) { \
ERROR(__VA_ARGS__); \
} \
} while (0)

#define ERROR_UNLESS(expr, ...) ERROR_IF(!(expr), __VA_ARGS__)
Expand Down

0 comments on commit 3f21344

Please sign in to comment.