Mercurial > minori
comparison include/core/config.h @ 63:3d2decf093bb
*: fix many clang warnings
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Sun, 01 Oct 2023 06:39:47 -0400 |
parents | 4c6dd5999b39 |
children | c69230dc2b5d |
comparison
equal
deleted
inserted
replaced
62:4c6dd5999b39 | 63:3d2decf093bb |
---|---|
31 std::string username; | 31 std::string username; |
32 int user_id; | 32 int user_id; |
33 } anilist; | 33 } anilist; |
34 }; | 34 }; |
35 | 35 |
36 #define WIDEIFY_EX(x) L ## x | 36 #define WIDEIFY_EX(x) L##x |
37 #define WIDEIFY(x) WIDEIFY_EX(x) | 37 #define WIDEIFY(x) WIDEIFY_EX(x) |
38 #define CONFIG_DIR "minori" | 38 #define CONFIG_DIR "minori" |
39 #define CONFIG_WDIR WIDEIFY(CONFIG_DIR) | 39 #define CONFIG_WDIR WIDEIFY(CONFIG_DIR) |
40 #define CONFIG_NAME "config.json" | 40 #define CONFIG_NAME "config.json" |
41 #define CONFIG_WNAME WIDEIFY(CONFIG_NAME) | 41 #define CONFIG_WNAME WIDEIFY(CONFIG_NAME) |
42 | 42 |
43 #define MAX_LINE_LENGTH 256 | 43 #define MAX_LINE_LENGTH 256 |
44 #endif // __core__config_h | 44 #endif // __core__config_h |