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

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to