Improve constructor of Version class

Now we can write `Version<int, 3, 1>(1)` and provide only 1 parameter
instead of all 3 parameters at once at the constructor. Note that for
this instance of `Version` 3 numbers were specified but only 1 is truly
mandatory.

The added code are required to specify conditions of the template
instantiation for the compiler.
This commit is contained in:
Chocobo1 2022-07-30 22:56:31 +08:00
commit a4c2363f43
No known key found for this signature in database
GPG key ID: 210D9C873253A68C
4 changed files with 174 additions and 15 deletions

View file

@ -15,6 +15,7 @@ set(testFiles
testutilscompare.cpp
testutilsgzip.cpp
testutilsstring.cpp
testutilsversion.cpp
)
foreach(testFile ${testFiles})