mirror of
https://github.com/Interlisp/maiko.git
synced 2026-04-18 00:16:31 +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:
@@ -71,9 +71,9 @@
|
||||
midpunt = LOLOC(LADDR_from_68k(CURRENTFX)); \
|
||||
PVar=(DLword *) \
|
||||
Addr68k_from_StkOffset( \
|
||||
(GETWORD(((DLword *)InterfacePage) +fxnum))) \
|
||||
(GETWORD(((DLword *)InterfacePage) + (fxnum)))) \
|
||||
+ FRAMESIZE; \
|
||||
GETWORD(((DLword *)InterfacePage) +fxnum) = midpunt ; \
|
||||
GETWORD(((DLword *)InterfacePage) + (fxnum)) = midpunt ; \
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user