From: Vladimír Vondruš Date: Mon, 10 Jan 2022 16:47:47 +0000 (+0100) Subject: documentation/doxygen: fix another void \return docs warning with 1.9. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~cjwatson/git?a=commitdiff_plain;h=a0a00329f4423a5fe1404a7c695ff7fa07f367b3;p=blog.git documentation/doxygen: fix another void \return docs warning with 1.9. Followup to 568edda0b4c2f4ff53652a28aa27a89cb54c2aac. --- diff --git a/documentation/test_doxygen/contents_sections_headings/File.h b/documentation/test_doxygen/contents_sections_headings/File.h index 96a861dc..f7e1913d 100644 --- a/documentation/test_doxygen/contents_sections_headings/File.h +++ b/documentation/test_doxygen/contents_sections_headings/File.h @@ -24,6 +24,6 @@ A subsection. Mooore. @param bar A param. -@return Does not return anything. +@return Does return something, yes. */ -void foo(int bar); +int foo(int bar); diff --git a/documentation/test_doxygen/contents_sections_headings/File_8h.html b/documentation/test_doxygen/contents_sections_headings/File_8h.html index 4975083a..4cee470a 100644 --- a/documentation/test_doxygen/contents_sections_headings/File_8h.html +++ b/documentation/test_doxygen/contents_sections_headings/File_8h.html @@ -38,16 +38,16 @@

Functions

- void foo(int bar) + auto foo(int bar) -> int
A function.

Function documentation

-
+

- void foo(int bar) + int foo(int bar)

A function.

@@ -63,7 +63,7 @@ - +
ReturnsDoes not return anything.Does return something, yes.