diff --git a/include/argparse/argparse.hpp b/include/argparse/argparse.hpp index 599e010..38c7d92 100644 --- a/include/argparse/argparse.hpp +++ b/include/argparse/argparse.hpp @@ -798,9 +798,9 @@ private: [](const std::string &aValue) { return aValue; }}; std::vector mValues; int mNumArgs = 1; - bool mIsOptional : 1; - bool mIsRequired : 1; - bool mIsUsed : 1; // True if the optional argument is used by user + bool mIsOptional : true; + bool mIsRequired : true; + bool mIsUsed : true; // True if the optional argument is used by user }; class ArgumentParser {