1
0
mirror of https://github.com/ScrelliCopter/tmx2gba.git synced 2025-02-21 03:29:25 +11:00
This commit is contained in:
2024-03-20 07:50:40 +11:00
parent c3bbe8135d
commit 57455e0b73

View File

@@ -33,9 +33,9 @@ namespace ArgParse
struct Options
{
const std::vector<const Option> options;
const std::vector<Option> options;
inline constexpr Options(const std::initializer_list<const Option>&& rhs)
inline constexpr Options(const std::initializer_list<Option>&& rhs)
: options(std::move(rhs)) {}
void ShowShortUsage(const std::string_view name, std::ostream& out) const;