Skip to content

Commit da41774

Browse files
author
Damian Rouson
authored
Merge pull request #13 from sourceryinstitute/explicit-typing
fix(object): explicit typing in UDDTIO abstract interface
2 parents b1911ee + 238fbd3 commit da41774

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

src/object_interface.f90

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ pure module function user_defined(this) result(is_defined)
5050
abstract interface
5151
subroutine write_interface(self, unit, iotype, v_list, iostat, iomsg)
5252
import object
53+
implicit none
5354
class(object), intent(in) :: self
5455
integer, intent(in) :: unit
5556
character(*), intent(in) :: iotype

tests/collective_subroutines_test.F90

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ function check_co_sum_without_result_image() result(result_)
8181
type(Result_t) :: result_
8282

8383
integer i, j
84-
integer, parameter :: result_image=2
8584

8685
associate(me => this_image())
8786
i = me

tests/data_partition_test.f90

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ module data_partition_test
2020
function test_data_partition() result(tests)
2121
type(test_item_t) tests
2222

23-
integer iteration
24-
2523
call partition%define_partitions( cardinality=num_particles)
2624

2725
associate( me=>this_image() )

0 commit comments

Comments
 (0)