Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add missing ifdef for building without W3_IC4 #33

Open
wants to merge 1 commit into
base: dev/unified
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions model/src/w3srcemd.F90
Original file line number Diff line number Diff line change
Expand Up @@ -2088,7 +2088,7 @@ SUBROUTINE W3SRCE ( srce_call, IT, ISEA, JSEA, IX, IY, IMOD, &
#ifdef W3_IC3
CALL W3SIC3 ( SPEC,DEPTH, CG1, WN1, IX, IY, VSIC, VDIC )
#endif
#ifndef W3_IC4_NUMERICS
#if defined(W3_IC4) && !defined(W3_IC4_NUMERICS)
CALL W3SIC4 ( SPEC,DEPTH, CG1, IX, IY, VSIC, VDIC )
#endif
#ifdef W3_IC5
Expand Down Expand Up @@ -2119,7 +2119,7 @@ SUBROUTINE W3SRCE ( srce_call, IT, ISEA, JSEA, IX, IY, IMOD, &
#ifdef W3_IC3
ATT=EXP(ICE*VDIC(IS)*DTG)
#endif
#ifndef W3_IC4_NUMERICS
#if defined(W3_IC4) && !defined(W3_IC4_NUMERICS)
ATT=EXP(ICE*VDIC(IS)*DTG)
#endif
#ifdef W3_IC5
Expand Down