]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Fix the documentation comments in config.h.
authorSadie Powell <sadie@witchery.services>
Sat, 16 May 2020 16:34:34 +0000 (17:34 +0100)
committerSadie Powell <sadie@witchery.services>
Tue, 19 May 2020 02:14:29 +0000 (03:14 +0100)
make/template/config.h

index 1a342c8990561357ac83ac1630beb0dd85d1c535..f077a5aa8d852cfacc2e19bf52c47d5fca18922d 100644 (file)
 
 #pragma once
 
 
 #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@"
 
 #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@"
 
 #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)))
 
 #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)))
 
 #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@"
 
 #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@"
 
 #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@"
 
 #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
 
 #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
 
  %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
 
  %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
  %define HAS_EVENTFD
 
 #endif