I have the following:

namespace foo {

/// Document this constant
static SomeType const NO_VALUE = 0;

class MyClass {
public:
    /**
     * Talk about NO_VALUE here
     */
    void some_function( SomeType val = NO_VALUE ) {}
};
} // end namespace

some_function() uses the globally defined constant (well, it's still
in the 'foo' namespace) as a default parameter value. I notice that
when the HTML documentation is generated, global variable mentions in
the @param or detail sections of the function are not auto-linked to
the documentation for that global variable.

Why isn't it linked?

Some notes:
- I have JAVADOC_AUTOBRIEF set to ON
- I have documented the file with @file

------------------------------------------------------------------------------
Try New Relic Now & We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service 
that delivers powerful full stack analytics. Optimize and monitor your
browser, app, & servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to