Re: [Doxygen-users] doxygen message I don't understand
Brought to you by:
dimitri
From: Fabian C. <Cen...@in...> - 2018-04-19 06:32:08
|
>/home/n7dr/projects/drlog/src/drlog_context.cpp:1615: warning: documented >symbol `decltype' was not declared or defined. >---- >/*! \brief Get names and values of sent exchange fields for a particular mode > \param m target mode > \return the names and values of all the fields in the sent exchange >when the mode is <i>m</i> >*/ >const decltype(drlog_context::_sent_exchange) >drlog_context::sent_exchange(const MODE m) >---- >I don't understand what doxygen is complaining about. It looks fine to me, and >there is no problem compiling. So how do I get rid of the message from doxygen? It's probably thinking that decltype is a function as the line looks like a function declaration. If it is a macro then you should give doxygen the macro definition or maybe enable the macro expansion in the config file. bye Fabi |