GNOME Bugzilla – Bug 679740
std::function default argument causes parameter to be not found
Last modified: 2012-08-11 13:18:28 UTC
The following code: /// \brief Test. class Test { public: typedef std::function<void (int)> FuncTypeA; typedef std::function<void ()> FuncTypeB; /// \brief Constructor. /// /// \param a The FuncTypeA to process. /// \param b The FuncTypeB to process. Test(FuncTypeA a, FuncTypeB b = [] {}) {} }; causes: warning : argument 'b' of command @param is not found in the argument list of neo::Test::Test(FuncTypeA a)
Confirmed. Should be supported in the next subversion update.
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.8.2. Please verify if this is indeed the case. Reopen the bug if you think it is not fixed and please include any additional information that you think can be relevant.