From daeca099e2ec13f94a5b1f63ae82b2f8da6ce8bf Mon Sep 17 00:00:00 2001 From: Zhihao Yuan Date: Sat, 16 Nov 2019 21:45:18 -0600 Subject: [PATCH] Remove undesired access control --- include/argparse.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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"; };