From 00634f8a09edf2b53c2effb4fc56eab6c6872da3 Mon Sep 17 00:00:00 2001 From: Eyal Rozenberg Date: Mon, 11 Jul 2022 16:10:12 +0300 Subject: [PATCH] Dropped `required_option_missing` as it is unused. --- include/cxxopts.hpp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/include/cxxopts.hpp b/include/cxxopts.hpp index 62e8536..47693ed 100644 --- a/include/cxxopts.hpp +++ b/include/cxxopts.hpp @@ -518,17 +518,6 @@ namespace exceptions { { } }; - - class required_option_missing : public parsing - { - public: - explicit required_option_missing(const std::string& option) - : parsing( - "Option " + LQUOTE + option + RQUOTE + " is required but not present" - ) - { - } - }; } template