Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

testing removal of extraneous Doxygen @fn directives #618

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions src/bufr_interface.F90
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ module bufr_interface

interface

!> @fn bufr_interface::cobfl_c::cobfl_c(bfl, io)
!> Open a new file for reading or writing BUFR messages via a C language interface.
!>
!> Wraps cobfl() function.
Expand All @@ -27,7 +26,6 @@ subroutine cobfl_c( bfl, io ) bind(C, name='cobfl')
character(kind=c_char), intent(in), value :: io
end subroutine cobfl_c

!> @fn bufr_interface::crbmg_c::crbmg_c(bmg, mxmb, nmb, iret)
!> Read the next BUFR message from the file that was opened via the most recent call
!> to subroutine cobfl_c() with io = 'r'.
!>
Expand All @@ -47,7 +45,6 @@ subroutine crbmg_c( bmg, mxmb, nmb, iret ) bind(C, name='crbmg')
integer(c_int), intent(out) :: nmb, iret
end subroutine crbmg_c

!> @fn bufr_interface::cwbmg_c::cwbmg_c(bmg, nmb, iret)
!> Write a BUFR message to the file that was opened via the most recent call
!> to subroutine cobfl_c() with io = 'w'.
!>
Expand All @@ -65,7 +62,6 @@ subroutine cwbmg_c( bmg, nmb, iret ) bind(C, name='cwbmg')
integer(c_int), intent(out) :: iret
end subroutine cwbmg_c

!> @fn bufr_interface::ccbfl_c::ccbfl_c()
!> Close all files that were opened via previous calls to subroutine cobfl_c().
!>
!> Wraps ccbfl() function.
Expand All @@ -75,7 +71,6 @@ subroutine ccbfl_c() bind(C, name='ccbfl')
use iso_c_binding
end subroutine ccbfl_c

!> @fn bufr_interface::dlloctbf_c::dlloctbf_c()
!> Free all memory allocated via inittbf_c().
!>
!> Wraps dlloctbf() function.
Expand Down
Loading