Like this, I've already used the followings:
<functionName>"("<argument-list>")"
"::"<functionName>"("<argument-list>")"
<functionName>"()"
"::"<functionName>
"::"<functionName>"()"
(<className>"::")n<functionName>"("<argument-list>")"
(<className>"::")n<functionName>"("<argument-list>")"<modifiers>
(<className>"::")n<functionName>"()"
(<className>"::")n<functionName>
(<className>".")n<functionName>
...
But none of them provide the hyperlink to my another member function.
More details:
Version is 1.8.17.
The changes in configuration file that are needed to recreate the problem, are only the enabling recursion and specifying the input.
The example:
class A {
public:
void foo();
/// This is a brief description
///
/// more description
/// \note It is better to use foo() instead of this method, in baz situations
// Other things that I've tested are below.
// A.foo
// A.foo()
// A::foo
// A::foo()
// ::foo
// ::foo()
void bar();
};
config:
OUTPUT_DIRECTORY =
RECURSIVE = YES
INPUT = ../src/
GENERATE_HTML = YES
HTML_OUTPUT = html
HTML_FILE_EXTENSION = .html