[Doxygen-users] \copybrief for \file not working after 1.8.15?
Brought to you by:
dimitri
|
From: Dirk D. <dir...@on...> - 2020-01-26 06:43:36
|
Hello,
I am not sure whether I completely misunderstood \brief for files...
Up to 1.8.15, I could use \copybrief for files like in the following
minimal example test.h:
---
/** \file
\brief File brief test
blabla.
\copybrief test.h */
---
doxygen -g Doxyfile
doxygen Doxyfile
produced something like the following as html:
---
<My Project header>
test.h File Reference
File brief test. More...
Go to the source code of this file.
Detailed Description
File brief test.
blabla.
File brief test.
---
Later versions give a warning:
.../test.h:4: warning: @copybrief or @copydoc target 'test.h' not found
and omit the last line (the second "File brief test.") in the output.
Something wrong with my example? Or a bug? It is on a 5.4.14-arch1-1
x86_64 GNU/Linux.
Kind regards,
Dirk
|