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-08 00:59:17 +0300
commite725ea308468ab50751ba7f930842a4c061226e9 (patch)
tree9e16fccd035aebf325c965311b0252c1f91e783a /CHANGELOG.md
parentd47101a101793c1610cf0a0b8174eb6973ed9873 (diff)
Use unsigned type for integer digit
Fixes #109. Although we always used numbers in the ASCII range, it was in a `size_t`, leading to a warning about possible loss of data on some compilers.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 76bba8a..33d50eb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,10 @@ options. The project adheres to semantic versioning.
* Allow integers to have leading zeroes.
+### Bug Fixes
+
+* Fix a warning about possible loss of data.
+
## 2.1.1
### Bug Fixes