From 51bd67fa299c7227f965d01433f6f7ed50531dd9 Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Sat, 21 Sep 2019 23:03:53 -0700 Subject: [PATCH] findloc is in gfortran 9.1 --- src/future.f90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/future.f90 b/src/future.f90 index d69384949..1eb82e91e 100644 --- a/src/future.f90 +++ b/src/future.f90 @@ -10,7 +10,7 @@ module future contains -#if defined(__GFORTRAN__) || __INTEL_COMPILER < 1800 +#if defined(__GFORTRAN__) && __GNUC__ < 9 || __INTEL_COMPILER < 1800 !-------------------------------------------------------------------------------------------------- !> @brief substitute for the findloc intrinsic (only for integer, dimension(:) at the moment) !--------------------------------------------------------------------------------------------------