diff options
Diffstat (limited to 'src/interfaces/argument_parser.hpp')
-rw-r--r-- | src/interfaces/argument_parser.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/argument_parser.hpp b/src/interfaces/argument_parser.hpp index fbf1b2a..742646d 100644 --- a/src/interfaces/argument_parser.hpp +++ b/src/interfaces/argument_parser.hpp @@ -15,11 +15,11 @@ struct ParsedArguments class IArgumentParser { public: - virtual ~IArgumentParser() = default; + virtual ~IArgumentParser() noexcept = default; virtual ParsedArguments parse(const std::vector<option> &options, const std::string_view &short_options, const int &argc, - char *const *argv) = 0; // NOLINT(cppcoreguidelines-avoid-c-arrays, - // modernize-avoid-c-arrays) + char *const *argv) noexcept = 0; // NOLINT(cppcoreguidelines-avoid-c-arrays, + // modernize-avoid-c-arrays) }; |