10
0
mirror of https://gitlab.com/scemama/irpf90.git synced 2024-11-07 06:33:43 +01:00

Fixed type

This commit is contained in:
Anthony Scemama 2024-04-22 10:58:25 +02:00
parent 76946321d6
commit 01899b41b2

View File

@ -46,7 +46,8 @@ re_decl = re.compile( "".join( [ r"^\ *",
r"|intrinsic *(::)?", r"|intrinsic *(::)?",
r"|external *(::)?", r"|external *(::)?",
r"|equivalence *(::)?", r"|equivalence *(::)?",
r"|type ?\(", r"|type *\(",
r"|type +",
r"|end ?type", r"|end ?type",
r")[^=(]" r")[^=(]"
] ) ) ] ) )