Skip to content

Commit eff8a6f

Browse files
committed
Remove stdlib_types, use iso_fortran_env instead
1 parent 43ed837 commit eff8a6f

File tree

5 files changed

+3
-14
lines changed

5 files changed

+3
-14
lines changed

src/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
set(SRC
2-
stdlib_types.f90
32
stdlib_io.f90
43
stdlib_error.f90
54
)

src/stdlib_io.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module stdlib_io
2-
use stdlib_types
2+
use iso_fortran_env, only: dp=>real64
33
implicit none
44
private
55
public :: loadtxt, savetxt

src/stdlib_types.f90

Lines changed: 0 additions & 10 deletions
This file was deleted.

src/tests/loadtxt/test_loadtxt.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
program test_loadtxt
2-
use stdlib_types, only: dp
2+
use iso_fortran_env, only: dp=>real64
33
use stdlib_io, only: loadtxt
44
implicit none
55

src/tests/loadtxt/test_savetxt.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
program test_loadtxt
2-
use stdlib_types, only: dp
2+
use iso_fortran_env, only: dp=>real64
33
use stdlib_io, only: loadtxt, savetxt
44
use stdlib_error, only: assert
55
implicit none

0 commit comments

Comments
 (0)