Skip to content

Commit 331e92e

Browse files
committed
use get_line from the updated stdlib
1 parent 66cda4f commit 331e92e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
os: [ubuntu-latest, macos-12, windows-latest]
13-
gcc: [10]
13+
gcc: [13]
1414

1515
steps:
1616
- name: Checkout repository

src/tutorial/dependencies/src/demo.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module demo
2-
use stdlib_io, only : getline
2+
use stdlib_io, only : get_line
33
use stdlib_strings, only : replace_all
44
implicit none
55
private
@@ -23,7 +23,7 @@ subroutine substitute(input, output, pattern, replacement)
2323
integer :: stat
2424

2525
do
26-
call getline(input, line, stat)
26+
call get_line(input, line, stat)
2727
if (stat /= 0) exit
2828
write(output, '(a)') replace_all(line, pattern, replacement)
2929
end do

0 commit comments

Comments
 (0)