Re: [Doxygen-users] Unexpected warning after upgrading to Doxygen 1.8.14
Brought to you by:
dimitri
From: Richard D. <Ri...@Da...> - 2018-05-05 14:03:28
|
On 5/5/18 1:05 AM, Geoff Alexander wrote: > > I get an unexpected warning with Doxygen 1.8.14, which I don’t get > with Doxygen 1.8.13. > > > > gdlxn@linux-6edc:~/bugs/b159> /usr/local/doxygen-1.8.13/bin/doxygen > Doxyfile.1.8.13 > > gdlxn@linux-6edc:~/bugs/b159> /usr/local/doxygen-1.8.14/bin/doxygen > Doxyfile.1.8.14 > > /home/gdlxn/bugs/b159/test1.hpp:5: warning: unexpected token in > comment block while parsing the argument of command exception > > > > Here's the contents of test1.hpp: > > > > --- begin --- > > /** > > * ECCL_ASSERT(e) is a macro that throws an eccl::assertion_exception if > > * @a e is <code>false</code>. > > * > > * @param e the expression tested > > * > > * @assertion_exception{e} > > */ > > #define ECCL_ASSERT(e) \ > > if (!(e)) { \ > > std::string message = "\""; \ > > message += #e; \ > > message += "\" is false"; \ > > throw eccl::assertion_exception(message); \ > > } > > --- end --- > > > > Is this a known bug in Doxygen 1.8.14? If not, what's the best way to > report it? > > > > Thanks, > > Geoff Alexander > What is @assertion_exception ? -- Richard Damon |