Update Doxygen config and fix some warnings.

This commit is contained in:
Sadie Powell 2024-06-11 20:29:04 +01:00
parent 28e2f30525
commit ba19a3259b
2 changed files with 10 additions and 1 deletions

View File

@ -3,6 +3,7 @@ PROJECT_NAME = InspIRCd
PROJECT_NUMBER = v4
PROJECT_BRIEF =
PROJECT_LOGO =
PROJECT_ICON = win/inspircd.ico
OUTPUT_DIRECTORY = docs/doxygen
CREATE_SUBDIRS = NO
CREATE_SUBDIRS_LEVEL = 8
@ -147,6 +148,9 @@ HTML_COLORSTYLE_SAT = 100
HTML_COLORSTYLE_GAMMA = 80
HTML_DYNAMIC_MENUS = YES
HTML_DYNAMIC_SECTIONS = NO
HTML_CODE_FOLDING = YES
HTML_COPY_CLIPBOARD = YES
HTML_PROJECT_COOKIE =
HTML_INDEX_NUM_ENTRIES = 100
GENERATE_DOCSET = NO
DOCSET_FEEDNAME = "Doxygen generated documentation"
@ -219,6 +223,7 @@ COMPACT_RTF = NO
RTF_HYPERLINKS = NO
RTF_STYLESHEET_FILE =
RTF_EXTENSIONS_FILE =
RTF_EXTRA_FILES =
GENERATE_MAN = NO
MAN_OUTPUT = man
MAN_EXTENSION = .3
@ -231,6 +236,9 @@ XML_NS_MEMB_FILE_SCOPE = NO
GENERATE_DOCBOOK = NO
DOCBOOK_OUTPUT = docbook
GENERATE_AUTOGEN_DEF = NO
GENERATE_SQLITE3 = NO
SQLITE3_OUTPUT = sqlite3
SQLITE3_RECREATE_DB = YES
GENERATE_PERLMOD = NO
PERLMOD_LATEX = NO
PERLMOD_PRETTY = YES

View File

@ -114,9 +114,10 @@ public:
virtual bool Canonicalize(std::string& text) const = 0;
/** Compares an entry from this list with the specified value.
* @param lm The list mode which is the entry exists on.
* @param entry The list entry to compare against.
* @param value The value to compare to.
* @return ...
* @return MATCH if the entries match and NOT_MATCH if the entries do not match.
*/
virtual Comparison CompareEntry(const ListModeBase* lm, const std::string& entry, const std::string& value) const = 0;