placeholders in list parsing parts to make it compile
This commit is contained in:
parent
f2f9e9211c
commit
8c86ee649c
1 changed files with 3 additions and 3 deletions
|
@ -169,17 +169,17 @@ inline void toLower(std::string &str) {
|
||||||
#define VAR_LIST(section, name, type) \
|
#define VAR_LIST(section, name, type) \
|
||||||
VAR_GENERIC(section, name,\
|
VAR_GENERIC(section, name,\
|
||||||
std::string val = checkAndRemove(line, namePascalCased);\
|
std::string val = checkAndRemove(line, namePascalCased);\
|
||||||
value = "";\
|
std::vector<type> value;\
|
||||||
)
|
)
|
||||||
#define VAR_LIST_SEP(section, name, type, sep) \
|
#define VAR_LIST_SEP(section, name, type, sep) \
|
||||||
VAR_GENERIC(section, name,\
|
VAR_GENERIC(section, name,\
|
||||||
std::string val = checkAndRemove(line, namePascalCased);\
|
std::string val = checkAndRemove(line, namePascalCased);\
|
||||||
value = "";\
|
std::vector<type> value;\
|
||||||
)
|
)
|
||||||
#define VAR_LIST_NUMBERED(section, name, type) \
|
#define VAR_LIST_NUMBERED(section, name, type) \
|
||||||
VAR_GENERIC(section, name,\
|
VAR_GENERIC(section, name,\
|
||||||
std::string val = checkAndRemove(line, namePascalCased);\
|
std::string val = checkAndRemove(line, namePascalCased);\
|
||||||
value = "";\
|
std::vector<type> value;\
|
||||||
)
|
)
|
||||||
|
|
||||||
Difficulty parseDifficulty(fs::path difficultyPath) {
|
Difficulty parseDifficulty(fs::path difficultyPath) {
|
||||||
|
|
Loading…
Reference in a new issue