summaryrefslogtreecommitdiff
path: root/include/iso646.h
diff options
context:
space:
mode:
authorKacper <kacper@mail.openlinux.dev>2025-12-09 23:14:53 +0100
committerKacper <kacper@mail.openlinux.dev>2025-12-09 23:14:53 +0100
commit169daa11155988a210fac949297381743f3cb400 (patch)
tree602ef5df5ae9ea075ab3d5dac3c8ad60da1ea2cc /include/iso646.h
parent4e2112e165fdd94dee58378e3ea32892f3710cd7 (diff)
feat: clang-tidy fixes
Diffstat (limited to 'include/iso646.h')
-rw-r--r--include/iso646.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/iso646.h b/include/iso646.h
index 109cf6d6..f92457b2 100644
--- a/include/iso646.h
+++ b/include/iso646.h
@@ -3,14 +3,14 @@
#define and &&
#define and_eq &=
-#define bitand &
-#define bitor |
+#define bitand (&)
+#define bitor (|)
#define compl ~
#define not !
#define not_eq !=
#define or ||
#define or_eq |=
-#define xor ^
+#define xor (^)
#define xor_eq ^=
#endif