File tree 2 files changed +5
-4
lines changed 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change
1
+ Subproject commit 2bb2038142e926c55eeea961f55506903c5b6827
Original file line number Diff line number Diff line change @@ -550,19 +550,19 @@ logical function manifest_is_same(this,that)
550
550
if (.not. this% install== other% install) return
551
551
if (.not. this% fortran== other% fortran) return
552
552
if (allocated (this% license).neqv. allocated (other% license)) return
553
- if (allocated (this% license) .and. allocated (other % license) ) then
553
+ if (allocated (this% license)) then
554
554
if (.not. this% license== other% license) return
555
555
end if
556
556
if (allocated (this% author).neqv. allocated (other% author)) return
557
- if (allocated (this% author) .and. allocated (other % author) ) then
557
+ if (allocated (this% author)) then
558
558
if (.not. this% author== other% author) return
559
559
end if
560
560
if (allocated (this% maintainer).neqv. allocated (other% maintainer)) return
561
- if (allocated (this% maintainer) .and. allocated (other % maintainer) ) then
561
+ if (allocated (this% maintainer)) then
562
562
if (.not. this% maintainer== other% maintainer) return
563
563
end if
564
564
if (allocated (this% copyright).neqv. allocated (other% copyright)) return
565
- if (allocated (this% copyright) .and. allocated (other % copyright) ) then
565
+ if (allocated (this% copyright)) then
566
566
if (.not. this% copyright== other% copyright) return
567
567
end if
568
568
if (allocated (this% library).neqv. allocated (other% library)) return
You can’t perform that action at this time.
0 commit comments