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>2019-06-14 11:28:04 +0300
committerJarryd Beck <jarro.2783@gmail.com>2019-06-14 11:28:04 +0300
commit1eca210edcb89ddbca78233f5eb0e93fa7a02966 (patch)
tree34fb4a6c10c0fa151d2cece485d9a7766424b035
parente17c6b08278da073693fa2c1cc2297953fe978b9 (diff)
Remove unused variable
-rw-r--r--include/cxxopts.hpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/cxxopts.hpp b/include/cxxopts.hpp
index 30ece57..a76bd84 100644
--- a/include/cxxopts.hpp
+++ b/include/cxxopts.hpp
@@ -554,7 +554,6 @@ namespace cxxopts
using US = typename std::make_unsigned<T>::type;
- constexpr auto umax = (std::numeric_limits<US>::max)();
constexpr bool is_signed = std::numeric_limits<T>::is_signed;
const bool negative = match.length(1) > 0;
const uint8_t base = match.length(2) > 0 ? 16 : 10;