diff options
author | Laurence Kedward <laurence.kedward@bristol.ac.uk> | 2021-03-30 08:39:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-30 08:39:48 +0100 |
commit | 495435278b3dbd484be909aa93946e1ef965fd8a (patch) | |
tree | e40658475c00547af62c10c608aa3da3a85a6945 | |
parent | b988fe8374d7a6d109bb3942357a28f8698e3fe7 (diff) | |
parent | 1131770d9fb9dcd89bbcc4049202134ac7bb17b1 (diff) | |
download | fpm-495435278b3dbd484be909aa93946e1ef965fd8a.tar.gz fpm-495435278b3dbd484be909aa93946e1ef965fd8a.zip |
Merge pull request #413 from LKedward/add-omp-intrinsic
Add: omp_lib to intrinsic modules list
-rw-r--r-- | fpm/src/fpm_source_parsing.f90 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fpm/src/fpm_source_parsing.f90 b/fpm/src/fpm_source_parsing.f90 index 76cb560..dd9a4c5 100644 --- a/fpm/src/fpm_source_parsing.f90 +++ b/fpm/src/fpm_source_parsing.f90 @@ -33,7 +33,8 @@ character(15), parameter :: INTRINSIC_MODULE_NAMES(*) = & 'iso_fortran_env', & 'ieee_arithmetic', & 'ieee_exceptions', & - 'ieee_features '] + 'ieee_features ', & + 'omp_lib '] contains |