Skip to content

Commit 3f6f77b

Browse files
authored
Update stdlib_bitsets.f90
For bitset_64 changed integer(block_kind), private, allocatable :: block to integer(block_kind), private :: block = 0
1 parent 1e1c47b commit 3f6f77b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stdlib_bitsets.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1205,7 +1205,7 @@ end subroutine log64_assign_large
12051205
!!
12061206
!! Type for bitsets with no more than 64 bits.
12071207
private
1208-
integer(block_kind), private, allocatable :: block
1208+
integer(block_kind), private :: block = 0
12091209

12101210
contains
12111211

0 commit comments

Comments
 (0)