Skip to content

Commit 559bfd7

Browse files
committed
Move the code to stdlib_experimental
1 parent eff8a6f commit 559bfd7

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

src/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
set(SRC
2-
stdlib_io.f90
3-
stdlib_error.f90
2+
stdlib_experimental_io.f90
3+
stdlib_experimental_error.f90
44
)
55

66
add_library(fortran_stdlib ${SRC})

src/stdlib_error.f90 renamed to src/stdlib_experimental_error.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module stdlib_error
1+
module stdlib_experimental_error
22
implicit none
33
private
44
public :: assert, error_stop

src/stdlib_io.f90 renamed to src/stdlib_experimental_io.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module stdlib_io
1+
module stdlib_experimental_io
22
use iso_fortran_env, only: dp=>real64
33
implicit none
44
private

src/tests/loadtxt/test_loadtxt.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
program test_loadtxt
22
use iso_fortran_env, only: dp=>real64
3-
use stdlib_io, only: loadtxt
3+
use stdlib_experimental_io, only: loadtxt
44
implicit none
55

66
real(dp), allocatable :: d(:, :)

src/tests/loadtxt/test_savetxt.f90

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
program test_loadtxt
22
use iso_fortran_env, only: dp=>real64
3-
use stdlib_io, only: loadtxt, savetxt
4-
use stdlib_error, only: assert
3+
use stdlib_experimental_io, only: loadtxt, savetxt
4+
use stdlib_experimental_error, only: assert
55
implicit none
66

77
real(dp) :: d(3, 2), e(2, 3)

0 commit comments

Comments
 (0)