Skip to content
Snippets Groups Projects
Commit d2504cd4 authored by Mathieu Courtois's avatar Mathieu Courtois
Browse files

[#34017] complete list with defined types

parent a9ed8d26
No related branches found
No related tags found
No related merge requests found
...@@ -14,7 +14,9 @@ DECL_ATTRS = '|'.join(['allocatable', 'pointer', 'automatic', 'private', ...@@ -14,7 +14,9 @@ DECL_ATTRS = '|'.join(['allocatable', 'pointer', 'automatic', 'private',
# regular expressions to match declarations # regular expressions to match declarations
DECLS = "(?P<decltype>(recursive|integer|logical|real|complex|character|" \ DECLS = "(?P<decltype>(recursive|integer|logical|real|complex|character|" \
"aster_logical|PetscInt|PetscScalar|mpi_int)) *" \ "aster_int|aster_logical|mpi_int|mpi_bool|" \
"blas_int|hid_t|med_int|med_idt|mumps_int|" \
"petsc_int|PetscInt|PetscScalar)) *" \
"(?P<declsize>(|\( *(kind|len) *= *(?P<declkind>[\w\*]+) *\)))" \ "(?P<declsize>(|\( *(kind|len) *= *(?P<declkind>[\w\*]+) *\)))" \
"(|(?P<declattr>( *, *(%s))+))" % DECL_ATTRS "(|(?P<declattr>( *, *(%s))+))" % DECL_ATTRS
DECLS_TYPE = "(?P<decltype>type *\(\w+ *\))" \ DECLS_TYPE = "(?P<decltype>type *\(\w+ *\))" \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment