Skip to content

Commit 7954400

Browse files
committed
Fix complaints on older gfortrans.
1 parent a23a3d9 commit 7954400

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CMakeLists.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,10 @@ define_property(TARGET
664664
# Add global openmpi property, because using a variable an setting in parent scope did
665665
# not work as expected, i.e., not at all, on Linux Fedora 39.
666666
#-------------------------------------------------------------------------------------
667-
define_property(GLOBAL PROPERTY openmpi BRIEF_DOCS "True when mpi is openMPI.")
667+
define_property(GLOBAL
668+
PROPERTY openmpi
669+
BRIEF_DOCS "True when mpi is openMPI."
670+
FULL_DOCS "Set internally when the mpi library to use is openmpi.")
668671

669672
#-------------------------------
670673
# Recurse into the src directory

src/tests/unit/send-get/get_array_test.f90

+3-1
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,9 @@ subroutine three()
430430
print *, a
431431
print *, c
432432
print *, a-c
433-
call print_and_register("array sections with ranges and strides failed in three of get_array_test")
433+
! Next line needs to be truncated or older gfortran error.
434+
call print_and_register( &
435+
"array sections with ranges and strides failed in three of get_array_test")
434436
endif
435437
end if
436438
! ARRAY = ARRAY

0 commit comments

Comments
 (0)