aboutsummaryrefslogtreecommitdiff
path: root/libbutl/semantic-version.mxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-05-23 13:42:44 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-05-24 13:59:09 +0300
commitf3f09dac499f7e122864eef2555ae8b66ef71975 (patch)
tree627ebf9b642c757f51d096b49fd529943c05636c /libbutl/semantic-version.mxx
parent086f8b6e68228c9081c15bee03975db4024114ad (diff)
Increase standard and semantic versions major, minor, and patch max values up to 99999
Diffstat (limited to 'libbutl/semantic-version.mxx')
-rw-r--r--libbutl/semantic-version.mxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/libbutl/semantic-version.mxx b/libbutl/semantic-version.mxx
index 35bf1b8..f143588 100644
--- a/libbutl/semantic-version.mxx
+++ b/libbutl/semantic-version.mxx
@@ -101,18 +101,18 @@ LIBBUTL_MODEXPORT namespace butl
std::string
string (bool ignore_build = false) const;
- // Numeric representation in the AAABBBCCC0000 form, where:
+ // Numeric representation in the AAAAABBBBBCCCCC0000 form, where:
//
- // AAA - major version number
- // BBB - minor version number
- // CCC - patch version number
+ // AAAAA - major version number
+ // BBBBB - minor version number
+ // CCCCC - patch version number
//
// See standard version for details.
//
explicit
semantic_version (std::uint64_t numeric, std::string build = "");
- // If any of the major/minor/patch components is greater than 999, then
+ // If any of the major/minor/patch components is greater than 99999, then
// throw std::invalid_argument. The build component is ignored.
//
std::uint64_t