File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 9292_string_re = re .compile (r"[LuU8]?('([^'\\]*(?:\\.[^'\\]*)*)'"
9393 r'|"([^"\\]*(?:\\.[^"\\]*)*)")' , re .S )
9494
95- _simple_type_sepcifiers_re = re .compile (r"""(?x)
95+ _simple_type_specifiers_re = re .compile (r"""(?x)
9696 \b(
9797 void|_Bool|bool
9898 # Integer
@@ -2584,7 +2584,7 @@ def _parse_trailing_type_spec(self) -> ASTTrailingTypeSpec:
25842584 # fundamental types, https://en.cppreference.com/w/c/language/type
25852585 # and extensions
25862586 self .skip_ws ()
2587- if self .match (_simple_type_sepcifiers_re ):
2587+ if self .match (_simple_type_specifiers_re ):
25882588 return ASTTrailingTypeSpecFundamental (self .matched_text )
25892589
25902590 # prefixed
Original file line number Diff line number Diff line change 335335]
336336
337337
338- _simple_type_sepcifiers_re = re .compile (r"""(?x)
338+ _simple_type_specifiers_re = re .compile (r"""(?x)
339339 \b(
340340 auto|void|bool
341341 # Integer
@@ -5859,7 +5859,7 @@ def _parse_trailing_type_spec(self) -> ASTTrailingTypeSpec:
58595859 # fundamental types, https://en.cppreference.com/w/cpp/language/type
58605860 # and extensions
58615861 self .skip_ws ()
5862- if self .match (_simple_type_sepcifiers_re ):
5862+ if self .match (_simple_type_specifiers_re ):
58635863 return ASTTrailingTypeSpecFundamental (self .matched_text )
58645864
58655865 # decltype
You can’t perform that action at this time.
0 commit comments