diff options
author | Sadie Powell <sadie@witchery.services> | 2020-05-16 17:34:34 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-05-19 03:14:29 +0100 |
commit | d2236175a369fd4d8f509c04beac80e31987a09f (patch) | |
tree | 64dbdd7e0a20dd0088e4a5c6e0f8dd57bb9e0cf6 /make/template | |
parent | 6e7bdeca956d3f1d08138511650cdee493992aa1 (diff) |
Fix the documentation comments in config.h.
Diffstat (limited to 'make/template')
-rw-r--r-- | make/template/config.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/make/template/config.h b/make/template/config.h index 1a342c899..f077a5aa8 100644 --- a/make/template/config.h +++ b/make/template/config.h @@ -19,40 +19,40 @@ #pragma once -/*** The branch version that is shown to unprivileged users. */ +/** The branch version that is shown to unprivileged users. */ #define INSPIRCD_BRANCH "InspIRCd-@VERSION_MAJOR@" -/*** The full version that is shown to privileged users. */ +/** The full version that is shown to privileged users. */ #define INSPIRCD_VERSION "InspIRCd-@VERSION_FULL@" -/*** Determines whether this version of InspIRCd is older than the requested version. */ +/** Determines whether this version of InspIRCd is older than the requested version. */ #define INSPIRCD_VERSION_BEFORE(MAJOR, MINOR) (((@VERSION_MAJOR@ << 8) | @VERSION_MINOR@) < ((MAJOR << 8) | (MINOR))) -/*** Determines whether this version of InspIRCd is equal to or newer than the requested version. */ +/** Determines whether this version of InspIRCd is equal to or newer than the requested version. */ #define INSPIRCD_VERSION_SINCE(MAJOR, MINOR) (((@VERSION_MAJOR@ << 16) | @VERSION_MINOR@) >= ((MAJOR << 8) | (MINOR))) -/*** The default location that config files are stored in. */ +/** The default location that config files are stored in. */ #define INSPIRCD_CONFIG_PATH "@CONFIG_DIR@" -/*** The default location that data files are stored in. */ +/** The default location that data files are stored in. */ #define INSPIRCD_DATA_PATH "@DATA_DIR@" -/*** The default location that log files are stored in. */ +/** The default location that log files are stored in. */ #define INSPIRCD_LOG_PATH "@LOG_DIR@" -/*** The default location that module files are stored in. */ +/** The default location that module files are stored in. */ #define INSPIRCD_MODULE_PATH "@MODULE_DIR@" #ifndef _WIN32 %target include/config.h -/*** Whether the arc4random_buf() function was available at compile time. */ + /** Whether the arc4random_buf() function was available at compile time. */ %define HAS_ARC4RANDOM_BUF -/*** Whether the clock_gettime() function was available at compile time. */ + /** Whether the clock_gettime() function was available at compile time. */ %define HAS_CLOCK_GETTIME -/*** Whether the eventfd() function was available at compile time. */ + /** Whether the eventfd() function was available at compile time. */ %define HAS_EVENTFD #endif |