From fd3b0605bfd0d5cf6fbe61f739fe86eaabbd4301 Mon Sep 17 00:00:00 2001 From: Justin Bich Date: Thu, 17 Oct 2024 20:53:10 +0200 Subject: [PATCH] Add missing fypp imports for mpi and serial (#31) --- include/fortuno_mpi.fypp | 2 +- include/fortuno_serial.fypp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fortuno_mpi.fypp b/include/fortuno_mpi.fypp index 746bea4..cafa90d 100644 --- a/include/fortuno_mpi.fypp +++ b/include/fortuno_mpi.fypp @@ -13,7 +13,7 @@ #! Imports the prerequisites needed by the macro definitions in this file #:def FORTUNO_MPI_IMPORTS() - use fortuno_mpi, only : mpi_case_item, mpi_check, mpi_failed + use fortuno_mpi, only : mpi_case_item, mpi_check, mpi_check_failed, mpi_failed #:enddef diff --git a/include/fortuno_serial.fypp b/include/fortuno_serial.fypp index 76126c2..69c9bb9 100644 --- a/include/fortuno_serial.fypp +++ b/include/fortuno_serial.fypp @@ -13,7 +13,7 @@ #! Imports the prerequisites needed by the macro definitions in this file #:def FORTUNO_SERIAL_IMPORTS() - use fortuno_serial, only : serial_case_item, serial_check, serial_failed + use fortuno_serial, only : serial_case_item, serial_check, serial_check_failed, serial_failed #:enddef