Skip to content

PR related to #726 and #723 #727

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Aug 8, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove assign bitset_64
  • Loading branch information
jvdp1 committed Jul 22, 2023
commit e648ed84f4984ae64c3e3361a72adb33577ce488
7 changes: 0 additions & 7 deletions src/stdlib_bitsets.fypp
Original file line number Diff line number Diff line change
Expand Up @@ -1510,13 +1510,6 @@ module stdlib_bitsets

interface assignment(=)

pure module subroutine assign_64( set1, set2 )
!! Version: experimental
!!
!! Used to define assignment for `bitset_64`.
type(bitset_64), intent(out) :: set1
type(bitset_64), intent(in) :: set2
end subroutine assign_64

#:for k1 in INT_KINDS
module subroutine assign_log${k1}$_64( self, logical_vector )
Expand Down
9 changes: 0 additions & 9 deletions src/stdlib_bitsets_64.fypp
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,6 @@ contains
end function any_64


pure module subroutine assign_64( set1, set2 )
! Used to define assignment for bitset_64
type(bitset_64), intent(out) :: set1
type(bitset_64), intent(in) :: set2

set1 % num_bits = set2 % num_bits
set1 % block = set2 % block

end subroutine assign_64


#:for k1 in INT_KINDS
Expand Down