Skip to content

Commit

Permalink
Use INTENT(IN) for IgnoreQuotes in GetWords (NWTC_IO)
Browse files Browse the repository at this point in the history
  • Loading branch information
deslaughter committed Dec 16, 2024
1 parent fca18ee commit a62d877
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/nwtc-library/src/NWTC_IO.f90
Original file line number Diff line number Diff line change
Expand Up @@ -2070,7 +2070,7 @@ SUBROUTINE GetWords ( Line, Words, NumWords, NumFound, IgnoreQuotes )
CHARACTER(*), INTENT(IN) :: Line !< The string to search.
CHARACTER(*), INTENT(OUT) :: Words(NumWords) !< The array of found words.
INTEGER, OPTIONAL, INTENT(OUT) :: NumFound !< The number of words found
LOGICAL, OPTIONAL, INTENT(OUT) :: IgnoreQuotes !< Flag to ignore quotes (process as whitespace)
LOGICAL, OPTIONAL, INTENT(IN) :: IgnoreQuotes !< Flag to ignore quotes (process as whitespace)

INTEGER :: iWord ! Word index.
INTEGER :: i ! Character index in line.
Expand Down

0 comments on commit a62d877

Please sign in to comment.