Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add clang-tidy error
Browse files Browse the repository at this point in the history
skrobinson committed Oct 5, 2022
1 parent 72d13b0 commit cbb14c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/argparse/argparse.hpp
Original file line number Diff line number Diff line change
@@ -373,7 +373,7 @@ class Argument {
template <std::size_t N, std::size_t... I>
explicit Argument(std::string_view prefix_chars,
std::array<std::string_view, N> &&a,
std::index_sequence<I...> /*unused*/)
std::index_sequence<I...>)
: m_is_optional((is_optional(a[I], prefix_chars) || ...)),
m_is_required(false), m_is_repeatable(false), m_is_used(false),
m_prefix_chars(prefix_chars) {

0 comments on commit cbb14c8

Please sign in to comment.