From b94af5e46afb4a69492d5d710805e454fa99581c Mon Sep 17 00:00:00 2001 From: Kunal Tyagi <2657068+kunaltyagi@users.noreply.github.com> Date: Sat, 14 Sep 2024 12:43:06 +0900 Subject: [PATCH] Allow `__attribute__` in code (#61) --- nsiqcppstyle_checker.py | 1 + 1 file changed, 1 insertion(+) diff --git a/nsiqcppstyle_checker.py b/nsiqcppstyle_checker.py index 5e1904d..53089a5 100644 --- a/nsiqcppstyle_checker.py +++ b/nsiqcppstyle_checker.py @@ -306,6 +306,7 @@ def t_ID(t): "__finally": "IGNORE", "__inline": "IGNORE", "__attribute": "IGNORE", + "__attribute__": "IGNORE", "_based": "IGNORE", "__stdcall": "IGNORE", "__try": "IGNORE",