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>2018-05-07 11:54:42 +0300
committerJarryd Beck <jarro.2783@gmail.com>2018-05-07 11:54:42 +0300
commitdaac639c2233d65b87c1d7e9214121a207dd36c9 (patch)
tree5b0eb973847f506b82f727631ee3170cf7260597
parentd47101a101793c1610cf0a0b8174eb6973ed9873 (diff)
fix typefix_type
-rw-r--r--include/cxxopts.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cxxopts.hpp b/include/cxxopts.hpp
index 206e1c7..f590587 100644
--- a/include/cxxopts.hpp
+++ b/include/cxxopts.hpp
@@ -547,7 +547,7 @@ namespace cxxopts
for (auto iter = value_match.first; iter != value_match.second; ++iter)
{
- size_t digit = 0;
+ US digit = 0;
if (*iter >= '0' && *iter <= '9')
{