Skip to content

Commit 7aafb20

Browse files
author
Damian Rouson
committed
Further reduce likelihood of name clashes
Add "opencoarrays_" prefix to the object_interface module name and the corresponding file name.
1 parent 8c8f4c5 commit 7aafb20

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/tests/utilities/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ if ("${CMAKE_Fortran_COMPILER_ID}" MATCHES "GNU" )
3232
endif()
3333

3434
add_library( oc_test_interfaces OBJECT
35-
object_interface.f90
35+
opencoarrays_object_interface.f90
3636
opencoarrays_assertions_interface.F90
3737
)
3838
add_library( opencoarrays_test_utilities

src/tests/utilities/opencoarrays_assertions_implementation.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
pure subroutine set(msg)
3131

32-
use object_interface, only : object
32+
use opencoarrays_object_interface, only : object
3333
!! import abstract type with generic binding supporting user-defined derived type output
3434

3535
character(len=:), intent(out), allocatable :: msg

src/tests/utilities/object_interface.f90 renamed to src/tests/utilities/opencoarrays_object_interface.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module object_interface
1+
module opencoarrays_object_interface
22
!! Object pattern abstract type to provide a universal interface to a userd-defined derived type ouptput
33
!! capability specified in a generic binding
44
implicit none

0 commit comments

Comments
 (0)