diff --git a/src/osuparser.cpp b/src/osuparser.cpp index fa5684d..cd82a89 100644 --- a/src/osuparser.cpp +++ b/src/osuparser.cpp @@ -90,8 +90,9 @@ inline void toLower(std::string &str) { CHECK_VAR(section, name, __VA_ARGS__) #define VAR_GENERIC_D(section, name, default, ...) \ - ret section.name = default;\ - VAR_GENERIC(section, name, __VA_ARGS__) + VAR_GENERIC(section, name,\ + ret section.name = default;\ + __VA_ARGS__) #define VAR_UINT(section, name) \ VAR_GENERIC(section, name,\