Fixed type

This commit is contained in:
Anthony Scemama 2024-04-22 10:58:25 +02:00
parent 76946321d6
commit 451c93a52c
1 changed files with 5 additions and 0 deletions

View File

@ -46,7 +46,12 @@ re_decl = re.compile( "".join( [ r"^\ *",
r"|intrinsic *(::)?",
r"|external *(::)?",
r"|equivalence *(::)?",
<<<<<<< Updated upstream
r"|type ?\(",
=======
r"|type *\(",
r"|type +",
>>>>>>> Stashed changes
r"|end ?type",
r")[^=(]"
] ) )