We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 495de75 commit ccecb61Copy full SHA for ccecb61
expander.py
@@ -17,6 +17,7 @@ class Expander:
17
'#include\s*["<](atcoder/[a-z_]*(|.hpp))[">]\s*')
18
19
include_guard = re.compile('#.*ATCODER_[A-Z_]*_HPP')
20
+
21
def is_ignored_line(self, line) -> bool:
22
if self.include_guard.match(line):
23
return True
@@ -55,7 +56,7 @@ def expand_acl(self, acl_name: str) -> List[str]:
55
56
for line in acl_source.splitlines():
57
if self.is_ignored_line(line):
58
continue
-
59
60
m = self.atcoder_include.match(line)
61
if m:
62
result.extend(self.expand_acl(m.group(1)))
0 commit comments