fix issues with compilation

preprocessor statement or unsupported private/public statemens for
modules seem to confuse CMake
This commit is contained in:
Martin Diehl 2023-09-22 20:24:58 +02:00
parent 0604e510ec
commit ac898be888
2 changed files with 0 additions and 24 deletions

View File

@ -30,15 +30,6 @@ module math
module procedure math_expand_real
end interface math_expand
#if __INTEL_COMPILER >= 1900
! do not make use of associated entities available to other modules
private :: &
misc, &
IO, &
config, &
parallelization
#endif
real(pREAL), parameter :: &
PI = acos(-1.0_pREAL), & !< ratio of a circle's circumference to its diameter
TAU = 2.0_pREAL*PI, & !< ratio of a circle's circumference to its radius

View File

@ -353,21 +353,6 @@ module phase
end interface
#if __INTEL_COMPILER >= 1900
public :: &
prec, &
math, &
rotations, &
IO, &
config, &
material, &
result, &
crystal, &
discretization, &
HDF5_utilities
#endif
public :: &
phase_init, &
phase_homogenizedC66, &