Remove undesired access control

This commit is contained in:
Zhihao Yuan 2019-11-16 21:45:18 -06:00
parent 955e1e1e6c
commit daeca099e2
No known key found for this signature in database
GPG Key ID: A2E474BDAA37E11C

View File

@ -64,7 +64,7 @@ struct is_container<
decltype(std::declval<T>().begin()), decltype(std::declval<T>().begin()),
decltype(std::declval<T>().end()), decltype(std::declval<T>().end()),
decltype(std::declval<T>().size())>, decltype(std::declval<T>().size())>,
void>> : public std::true_type {}; void>> : std::true_type {};
template <typename T> template <typename T>
static constexpr bool is_container_v = is_container<T>::value; static constexpr bool is_container_v = is_container<T>::value;
@ -363,7 +363,6 @@ private:
bool mIsRequired = false; bool mIsRequired = false;
bool mIsUsed = false; // relevant for optional arguments. True if used by user bool mIsUsed = false; // relevant for optional arguments. True if used by user
public:
static constexpr auto mHelpOption = "-h"; static constexpr auto mHelpOption = "-h";
static constexpr auto mHelpOptionLong = "--help"; static constexpr auto mHelpOptionLong = "--help";
}; };