aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/argument_parser.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/argument_parser.hpp')
-rw-r--r--src/interfaces/argument_parser.hpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/interfaces/argument_parser.hpp b/src/interfaces/argument_parser.hpp
index 8769698..d2dfb03 100644
--- a/src/interfaces/argument_parser.hpp
+++ b/src/interfaces/argument_parser.hpp
@@ -18,9 +18,11 @@ class IArgumentParser
public:
virtual ~IArgumentParser() noexcept = default;
- virtual auto parse(const std::vector<option> &options,
- const std::string_view &short_options, const int &argc,
- char *const *argv) noexcept
- -> ParsedArguments = 0; // NOLINT(cppcoreguidelines-avoid-c-arrays,
- // modernize-avoid-c-arrays)
+ virtual auto parse(
+ const std::vector<option> &options,
+ const std::string_view &short_options,
+ const int &argc,
+ char *const *argv
+ ) noexcept -> ParsedArguments = 0; // NOLINT(cppcoreguidelines-avoid-c-arrays,
+ // modernize-avoid-c-arrays)
};