-
-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #723 from jakobandersen/func_lookup_function_pointer
Make doxygenfunction more robust when matching parameters
- Loading branch information
Showing
6 changed files
with
107 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
PROJECT_NAME = "C++ Function Lookup" | ||
OUTPUT_DIRECTORY = cpp_function_lookup | ||
GENERATE_LATEX = NO | ||
GENERATE_MAN = NO | ||
GENERATE_RTF = NO | ||
CASE_SENSE_NAMES = NO | ||
INPUT = cpp_function_lookup.h | ||
QUIET = YES | ||
JAVADOC_AUTOBRIEF = YES | ||
GENERATE_HTML = NO | ||
GENERATE_XML = YES |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// stuff on the paramQual | ||
void fNoexcept() noexcept; | ||
void fFinal() final; | ||
void fOverride() override; | ||
void fAttr() [[myattr]]; // TODO: Doxygen seems to strip attributes | ||
void fFInit() = default; | ||
auto fTrailing() -> int; | ||
|
||
// different parameters | ||
void fInit(int arg = 42); | ||
void fPlain(int arg); | ||
void fPtr(int *arg); | ||
void fLRef(int &arg); | ||
void fRRef(int &&arg); | ||
template<typename ...T> | ||
void fParamPack(T ...arg); | ||
class A {}; | ||
void fMemPtr(int A::*arg); | ||
void fParen(void (*arg)()); | ||
|
||
// different parameters in a function pointer | ||
void fParenPlain(void (*arg)(int argInner)); |