[Doxygen-users] Rejects C++ overloaded methods w/ default parameters
Brought to you by:
dimitri
From: MK <mk...@co...> - 2014-07-21 14:18:46
|
I'm not sure why this doesn't work; I have overloaded constructors with default values that came out fine, overloaded methods, and methods w/ default params, but this is the only overloaded method with default parameters. It gets left out of the documentation and an error is reported (I've added indentation to make this more readable): Searching for member function documentation... led8x8.cpp:203: warning: no matching class member found for void led8x8::scroll ( const vector< led8x8Image * > &images, ledDirection_t direction, int delay ) Possible candidates: void led8x8::scroll ( const std::vector< led8x8Image * > &, ledDirection_t, int=5 ) void led8x8::scroll ( std::string, ledDirection_t, int=5 ) led8x8.cpp:224: warning: no matching class member found for void led8x8::scroll ( string msg, ledDirection_t direction, int delay ) Possible candidates: void led8x8::scroll ( const std::vector< led8x8Image * > &, ledDirection_t, int=5 ) void led8x8::scroll( std::string, ledDirection_t, int=5 ) As you can see, these *do* match up; this code compiles flawlessly. Is there anyway around this or do I have to edit these into the html file manually? MK -- "Enthusiasm is not the enemy of the intellect." (said of Irving Howe) |