OSDN Git Service

[Refactor] #1366 Added todo comment to type alias 'concptr'
authorHourier <grapefox.whitelucifer.0408@gmail.com>
Wed, 18 Aug 2021 12:38:03 +0000 (21:38 +0900)
committerHourier <grapefox.whitelucifer.0408@gmail.com>
Thu, 19 Aug 2021 11:40:42 +0000 (20:40 +0900)
src/system/h-type.h

index ec2d414..8da5e7a 100644 (file)
 
 /*** Special 4 letter names for some standard types ***/
 typedef void *vptr; /*!< void型ポインタ定義 / A standard pointer (to "void" because ANSI C says so) */
-typedef const char *concptr; /*!< 文字列定数用ポインタ定義 / A simple pointer (to unmodifiable strings) */
+
+/*!
+ * @brief 文字列定数用ポインタ定義 / Unmodifiable strings
+ * @todo std::stringに置換したい.
+ */
+typedef const char *concptr;
 
 /*!
  * @brief エラーコードの定義 / Error codes for function return values