Fix doxygen warnings and remove javadocs (#2324)

* Fix doxygen warnings and remove javadocs

* fix typo
This commit is contained in:
Allen Byrne
2022-12-20 16:59:40 -06:00
committed by GitHub
parent b9244a85d9
commit c1e44d32e6
16 changed files with 28 additions and 63 deletions

View File

@@ -4305,31 +4305,6 @@ SUBROUTINE h5pset_attr_phase_change_f(ocpl_id, max_compact, min_dense, hdferr)
CHARACTER(LEN=*), INTENT(IN) :: name
INTEGER , INTENT(IN) :: value
INTEGER , INTENT(OUT) :: hdferr
END SUBROUTINE h5pset
!>
!! \ingroup FH5P
!!
!! \brief Sets a property list value.
!!
!! \attention \fortran_obsolete
!!
!! \param prp_id Property list identifier to modify.
!! \param name Name of property to modify.
!! \param value Property value, supported types are:
!! \li INTEGER
!! \li REAL
!! \li DOUBLE PRECISION
!! \li CHARACTER(LEN=*)
!! \param hdferr \fortran_error
!!
!! See C API: @ref H5Pset()
!!
SUBROUTINE h5pset_f(prp_id, name, value, hdferr)
INTEGER(HID_T), INTENT(IN) :: prp_id
CHARACTER(LEN=*), INTENT(IN) :: name
INTEGER, INTENT(IN) :: value
INTEGER, INTENT(OUT) :: hdferr
END SUBROUTINE h5pset_f
!>
!! \ingroup FH5P