diff --git a/include/argparse.hpp b/include/argparse.hpp index d6a744a..8d11ec2 100644 --- a/include/argparse.hpp +++ b/include/argparse.hpp @@ -64,7 +64,7 @@ struct is_container< decltype(std::declval().begin()), decltype(std::declval().end()), decltype(std::declval().size())>, - void>> : public std::true_type {}; + void>> : std::true_type {}; template static constexpr bool is_container_v = is_container::value; @@ -363,7 +363,6 @@ private: bool mIsRequired = false; bool mIsUsed = false; // relevant for optional arguments. True if used by user -public: static constexpr auto mHelpOption = "-h"; static constexpr auto mHelpOptionLong = "--help"; };