mirror of
https://github.com/Interlisp/maiko.git
synced 2026-02-19 22:05:33 +00:00
warning: macro argument should be enclosed in parentheses [bugprone-macro-parentheses] (#374)
Except where the expansion would be syntactically invalid, for example "goto macroarg;" detection of which is a bug in clang-tidy, so warn it off with a NOLINT...(bugprone-macro-parentheses)
This commit is contained in:
@@ -777,7 +777,7 @@ void nts(struct frameex1 *fxp) {
|
||||
#define VARTYPE_PVAR (2)
|
||||
#define VARTYPE_IVAR (0)
|
||||
|
||||
#define VAROFFSET(X) (X & 0xFFFFFFF)
|
||||
#define VAROFFSET(X) ((X) & 0xFFFFFFF)
|
||||
|
||||
void nt1(LispPTR *start, int size, char *str) {
|
||||
LispPTR *endp, *entry2p;
|
||||
|
||||
Reference in New Issue
Block a user