Skip to content

Commit 5904f32

Browse files
committed
Revert "fix: replace path of common.fypp"
This reverts commit 16d8b86.
1 parent f941556 commit 5904f32

File tree

64 files changed

+64
-64
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+64
-64
lines changed

src/stdlib_ascii.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#:include "../include/common.fypp"
1+
#:include "common.fypp"
22

33
!> The `stdlib_ascii` module provides procedures for handling and manipulating
44
!> intrinsic character variables and constants.

src/stdlib_bitsets.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#:include "../include/common.fypp"
1+
#:include "common.fypp"
22
module stdlib_bitsets
33
!! Implements zero based bitsets of size up to `huge(0_int32)`.
44
!! The current code uses 64 bit integers to store the bits and uses all 64 bits.

src/stdlib_bitsets_64.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#:include "../include/common.fypp"
1+
#:include "common.fypp"
22
submodule(stdlib_bitsets) stdlib_bitsets_64
33
implicit none
44

src/stdlib_bitsets_large.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#:include "../include/common.fypp"
1+
#:include "common.fypp"
22
submodule(stdlib_bitsets) stdlib_bitsets_large
33
implicit none
44

src/stdlib_io.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#:include "../include/common.fypp"
1+
#:include "common.fypp"
22

33
#:set KINDS_TYPES = REAL_KINDS_TYPES + INT_KINDS_TYPES + CMPLX_KINDS_TYPES
44

src/stdlib_io_npy.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
! SPDX-Identifer: MIT
22

3-
#:include "../include/common.fypp"
3+
#:include "common.fypp"
44
#:set RANKS = range(1, MAXRANK + 1)
55
#:set KINDS_TYPES = REAL_KINDS_TYPES + INT_KINDS_TYPES + CMPLX_KINDS_TYPES
66

src/stdlib_io_npy_load.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
! SPDX-Identifier: MIT
22

3-
#:include "../include/common.fypp"
3+
#:include "common.fypp"
44
#:set RANKS = range(1, MAXRANK + 1)
55
#:set KINDS_TYPES = REAL_KINDS_TYPES + INT_KINDS_TYPES + CMPLX_KINDS_TYPES
66

src/stdlib_io_npy_save.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
! SPDX-Identifer: MIT
22

3-
#:include "../include/common.fypp"
3+
#:include "common.fypp"
44
#:set RANKS = range(1, MAXRANK + 1)
55
#:set KINDS_TYPES = REAL_KINDS_TYPES + INT_KINDS_TYPES + CMPLX_KINDS_TYPES
66

src/stdlib_kinds.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#:include "../include/common.fypp"
1+
#:include "common.fypp"
22
!> Version: experimental
33
!>
44
!> The specification of this module is available [here](../page/specs/stdlib_kinds.html).

src/stdlib_linalg.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#:include "../include/common.fypp"
1+
#:include "common.fypp"
22
#:set RCI_KINDS_TYPES = REAL_KINDS_TYPES + CMPLX_KINDS_TYPES + INT_KINDS_TYPES
33
module stdlib_linalg
44
!!Provides a support for various linear algebra procedures

0 commit comments

Comments
 (0)