diff options
Diffstat (limited to 'src/interfaces/argument_parser.hpp')
-rw-r--r-- | src/interfaces/argument_parser.hpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/interfaces/argument_parser.hpp b/src/interfaces/argument_parser.hpp index efcbaf3..8769698 100644 --- a/src/interfaces/argument_parser.hpp +++ b/src/interfaces/argument_parser.hpp @@ -18,9 +18,9 @@ class IArgumentParser public: virtual ~IArgumentParser() noexcept = default; - virtual ParsedArguments - parse(const std::vector<option> &options, const std::string_view &short_options, - const int &argc, - char *const *argv) noexcept = 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) }; |