Skip to content

Commit 35dedba

Browse files
author
Juha Ruokolainen
committed
Remove automatic loading of module "Messages" through module "Types"
1 parent d246eb1 commit 35dedba

12 files changed

+13
-3
lines changed

fem/src/EigenSolve.F90

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757

5858
MODULE EigenSolve
5959

60+
USE Messages
6061
IMPLICIT NONE
6162

6263
CONTAINS

fem/src/ElementDescription.F90

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
#include "../config.h"
4545

4646
MODULE ElementDescription
47+
USE Messages
4748
USE Integration
4849
USE LinearAlgebra
4950
USE CoordinateSystems

fem/src/GeneralUtils.F90

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
!-----------------------------------------------------------------------------
4545
MODULE GeneralUtils
4646

47+
USE Messages
4748
USE LoadMod
4849

4950
#ifdef HAVE_LUA
@@ -2615,8 +2616,8 @@ END MODULE GeneralUtils
26152616
!---------------------------------------------------------
26162617
MODULE AscBinOutputUtils
26172618

2618-
26192619
USE Types
2620+
USE Messages
26202621
IMPLICIT NONE
26212622

26222623
LOGICAL, PRIVATE :: AsciiOutput, SinglePrec, CalcSum = .FALSE.

fem/src/Integration.F90

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
!-----------------------------------------------------------------------------
4444
MODULE Integration
4545
USE LoadMod
46+
USE Messages
4647

4748
IMPLICIT NONE
4849

fem/src/Interpolation.F90

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
MODULE Interpolation
4545

4646
USE Types
47+
USE Messages
4748
USE SParIterGlobals
4849
USE CoordinateSystems
4950
USE ElementDescription, ONLY : GlobalToLocal, ElementInfo, GetElementType, &

fem/src/LinearAlgebra.F90

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
MODULE LinearAlgebra
4949

5050
USE Types
51+
USE Messages
5152
IMPLICIT NONE
5253

5354
CONTAINS

fem/src/LoadMod.F90

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838

3939
MODULE LoadMod
4040
USE Types
41+
USE Messages
4142
USE, INTRINSIC :: ISO_C_BINDING
4243
USE huti_interfaces
4344
IMPLICIT NONE

fem/src/MainUtils.F90

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
!------------------------------------------------------------------------------
4444
MODULE MainUtils
4545
!------------------------------------------------------------------------------
46+
USE Messages
4647
USE BlockSolve
4748
USE IterSolve, ONLY : NumericalError
4849
USE LoadMod, ONLY : ExecLocalAssembly, ExecSolver

fem/src/PElementMaps.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747

4848
MODULE PElementMaps
4949
USE Types
50-
Use GeneralUtils, ONLY : I2S
50+
Use GeneralUtils
5151

5252
IMPLICIT NONE
5353

fem/src/SParIterComm.F90

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
MODULE SParIterComm
4848

4949
USE LoadMod, ONLY : RealTime
50+
USE Messages
5051
USE SParIterGlobals
5152

5253
#ifdef HAVE_XIOS

0 commit comments

Comments
 (0)