Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jarro2783/cxxopts.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarryd Beck <jarro.2783@gmail.com>2017-06-01 01:07:28 +0300
committerJarryd Beck <jarro.2783@gmail.com>2017-06-01 01:07:28 +0300
commit184c4a19e6b3122b7c302381d1bdb7e6599eb30b (patch)
tree8efb0e1a138852f57305c25a1d04afac3b061630
parent3496737e6f6f95414ff9f5a325d6c9075175a681 (diff)
fix warningswall
-rw-r--r--CMakeLists.txt2
-rw-r--r--include/cxxopts.hpp71
-rw-r--r--test/options.cpp10
3 files changed, 47 insertions, 36 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index cf010c6..35b43f4 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -48,7 +48,7 @@ if(CXXOPTS_USE_UNICODE_HELP)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${ICU_CFLAGS} -DCXXOPTS_USE_UNICODE")
endif()
-set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Werror")
+set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Werror -Wextra -Wshadow")
add_library(cxxopts INTERFACE)
target_sources(
diff --git a/include/cxxopts.hpp b/include/cxxopts.hpp
index 1e49266..0d37e33 100644
--- a/include/cxxopts.hpp
+++ b/include/cxxopts.hpp
@@ -66,8 +66,8 @@ namespace cxxopts
{
public:
- UnicodeStringIterator(const icu::UnicodeString* s, int32_t pos)
- : s(s)
+ UnicodeStringIterator(const icu::UnicodeString* string, int32_t pos)
+ : s(string)
, i(pos)
{
}
@@ -597,11 +597,11 @@ namespace cxxopts
public:
OptionDetails
(
- const String& description,
- std::shared_ptr<const Value> value
+ const String& desc,
+ std::shared_ptr<const Value> val
)
- : m_desc(description)
- , m_value(value)
+ : m_desc(desc)
+ , m_value(val)
, m_count(0)
{
}
@@ -809,7 +809,11 @@ namespace cxxopts
inline
void
- generate_group_help(String& result, const std::vector<std::string>& groups) const;
+ generate_group_help
+ (
+ String& result,
+ const std::vector<std::string>& groups
+ ) const;
inline
void
@@ -1010,32 +1014,32 @@ OptionAdder::operator()
throw invalid_option_format_error(opts);
}
- const auto& s = result[2];
- const auto& l = result[3];
+ const auto& short_match = result[2];
+ const auto& long_match = result[3];
- if (!s.length() && !l.length())
+ if (!short_match.length() && !long_match.length())
{
throw invalid_option_format_error(opts);
- } else if (l.length() == 1 && s.length())
+ } else if (long_match.length() == 1 && short_match.length())
{
throw invalid_option_format_error(opts);
}
auto option_names = []
(
- const std::sub_match<const char*>& s,
- const std::sub_match<const char*>& l
+ const std::sub_match<const char*>& short_,
+ const std::sub_match<const char*>& long_
)
{
- if (l.length() == 1)
+ if (long_.length() == 1)
{
- return std::make_tuple(l.str(), s.str());
+ return std::make_tuple(long_.str(), short_.str());
}
else
{
- return std::make_tuple(s.str(), l.str());
+ return std::make_tuple(short_.str(), long_.str());
}
- }(s, l);
+ }(short_match, long_match);
m_options.add_option
(
@@ -1437,14 +1441,21 @@ Options::help_one_group(const std::string& g) const
}
void
-Options::generate_group_help(String& result, const std::vector<std::string>& groups) const
+Options::generate_group_help
+(
+ String& result,
+ const std::vector<std::string>& print_groups
+) const
{
- for (std::size_t i = 0; i < groups.size(); ++i)
+ for (size_t i = 0; i != print_groups.size(); ++i)
{
- String const& group_help = help_one_group(groups[i]);
- if (empty(group_help)) continue;
- result += group_help;
- if (i < groups.size() - 1)
+ const String& group_help_text = help_one_group(print_groups[i]);
+ if (empty(group_help_text))
+ {
+ continue;
+ }
+ result += group_help_text;
+ if (i < print_groups.size() - 1)
{
result += '\n';
}
@@ -1454,19 +1465,19 @@ Options::generate_group_help(String& result, const std::vector<std::string>& gro
void
Options::generate_all_groups_help(String& result) const
{
- std::vector<std::string> groups;
- groups.reserve(m_help.size());
+ std::vector<std::string> all_groups;
+ all_groups.reserve(m_help.size());
for (auto& group : m_help)
{
- groups.push_back(group.first);
+ all_groups.push_back(group.first);
}
- generate_group_help(result, groups);
+ generate_group_help(result, all_groups);
}
std::string
-Options::help(const std::vector<std::string>& groups) const
+Options::help(const std::vector<std::string>& help_groups) const
{
String result = m_help_string + "\nUsage:\n " +
toLocalString(m_program) + " [OPTION...]";
@@ -1477,13 +1488,13 @@ Options::help(const std::vector<std::string>& groups) const
result += "\n\n";
- if (groups.size() == 0)
+ if (help_groups.size() == 0)
{
generate_all_groups_help(result);
}
else
{
- generate_group_help(result, groups);
+ generate_group_help(result, help_groups);
}
return toUTF8String(result);
diff --git a/test/options.cpp b/test/options.cpp
index 1f46c61..17354c9 100644
--- a/test/options.cpp
+++ b/test/options.cpp
@@ -7,13 +7,13 @@
class Argv {
public:
- Argv(std::initializer_list<const char*> argv)
- : m_argv(new char*[argv.size()])
- , m_argc(argv.size())
+ Argv(std::initializer_list<const char*> args)
+ : m_argv(new char*[args.size()])
+ , m_argc(args.size())
{
int i = 0;
- auto iter = argv.begin();
- while (iter != argv.end()) {
+ auto iter = args.begin();
+ while (iter != args.end()) {
auto len = strlen(*iter) + 1;
auto ptr = std::unique_ptr<char[]>(new char[len]);