Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
faltaba un ifdef para compilar con cygwin
Browse files Browse the repository at this point in the history
  • Loading branch information
salvaugres committed Apr 18, 2024
1 parent ba600ed commit 4f09bf8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src_main_pub/nfde_types.F90
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@
MODULE NFDETypes
!
USE FDETYPES
#ifdef CompileWithWires_mtln
USE mtln_types_mod
#endif
!
IMPLICIT NONE
INTEGER (KIND=4), PARAMETER :: RK = RKIND
Expand Down Expand Up @@ -779,8 +781,10 @@ MODULE NFDETypes
! Thin Elements
TYPE (ThinWires), POINTER :: tWires => NULL ()
TYPE (SlantedWires), POINTER :: sWires => NULL ()
TYPE (ThinSlots), POINTER :: tSlots => NULL ()
TYPE (ThinSlots), POINTER :: tSlots => NULL ()
#ifdef CompileWithWires_mtln
TYPE (mtln_t), POINTER :: mtln => NULL ()
#endif
END TYPE Parseador

!---> definicion de tipos
Expand Down

0 comments on commit 4f09bf8

Please sign in to comment.