summaryrefslogtreecommitdiffstats
path: root/fortran/test/tf_F08.f90
diff options
context:
space:
mode:
Diffstat (limited to 'fortran/test/tf_F08.f90')
-rw-r--r--fortran/test/tf_F08.f907
1 files changed, 2 insertions, 5 deletions
diff --git a/fortran/test/tf_F08.f90 b/fortran/test/tf_F08.f90
index fb2e392..9844702 100644
--- a/fortran/test/tf_F08.f90
+++ b/fortran/test/tf_F08.f90
@@ -29,13 +29,11 @@
! NOTES
! This file contains "sizeof" functions that are F2008 standard compliant
! and replace the non-standard 'SIZEOF' functions found in the file tf_F03.
-! Unfortunity we need to wrap the C_SIZEOF/STORAGE_SIZE functions to handle different
+! Unfortunity we need to wrap the STORAGE_SIZE functions to handle different
! data types from the various tests.
-!
-! F08+TS29113 requires C interoperable variable as argument for C_SIZEOF.
!
! This file will be build instead of tf_F03.f90 if the intrinsic fortran
-! function C_SIZEOF/STORAGE_SIZE is found during configure.
+! function STORAGE_SIZE is found during configure.
!
!*****
MODULE TH5_MISC_PROVISIONAL
@@ -72,7 +70,6 @@ CONTAINS
IMPLICIT NONE
TYPE(comp_datatype), INTENT(in) :: a
- !H5_SIZEOF_CMPD = C_SIZEOF(a)
H5_SIZEOF_CMPD = storage_size(a, c_size_t)/storage_size(c_char_'a',c_size_t)
END FUNCTION H5_SIZEOF_CMPD