MK,

Make sure your "std::" prefixes match - Doxygen is far less forgiving that the 
C++ compiler on this!

Alasdair

-----Original Message-----
From: MK [mailto:m...@cognitivedissonance.ca] 
Sent: 21 July 2014 14:37
To: doxygen-users@lists.sourceforge.net
Subject: [Doxygen-users] Rejects C++ overloaded methods w/ default parameters

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)

------------------------------------------------------------------------------
Want fast and easy access to all the code in your enterprise? Index and
search up to 200,000 lines of code with a free copy of Black Duck
Code Sight - the same software that powers the world's largest code
search on Ohloh, the Black Duck Open Hub! Try it now.
http://p.sf.net/sfu/bds
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

------------------------------------------------------------------------------
Want fast and easy access to all the code in your enterprise? Index and
search up to 200,000 lines of code with a free copy of Black Duck
Code Sight - the same software that powers the world's largest code
search on Ohloh, the Black Duck Open Hub! Try it now.
http://p.sf.net/sfu/bds
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to