diff options
Diffstat (limited to 'src/version.h')
| -rw-r--r-- | src/version.h | 7 |
1 files changed, 3 insertions, 4 deletions
| diff --git a/src/version.h b/src/version.h index 7aab91b..060d557 100644 --- a/src/version.h +++ b/src/version.h | |||
| @@ -1,9 +1,10 @@ | |||
| 1 | #ifndef VERSION_H_C757E53C | 1 | #ifndef VERSION_H_C757E53C |
| 2 | #define VERSION_H_C757E53C | 2 | #define VERSION_H_C757E53C |
| 3 | 3 | ||
| 4 | #include <sstream> | ||
| 5 | #include <regex> | 4 | #include <regex> |
| 6 | 5 | ||
| 6 | #include <fmt/core.h> | ||
| 7 | |||
| 7 | struct Version { | 8 | struct Version { |
| 8 | int major = 0; | 9 | int major = 0; |
| 9 | int minor = 0; | 10 | int minor = 0; |
| @@ -24,9 +25,7 @@ struct Version { | |||
| 24 | } | 25 | } |
| 25 | 26 | ||
| 26 | std::string ToString() const { | 27 | std::string ToString() const { |
| 27 | std::ostringstream output; | 28 | return fmt::format("v{}.{}.{}", major, minor, revision); |
| 28 | output << "v" << major << "." << minor << "." << revision; | ||
| 29 | return output.str(); | ||
| 30 | } | 29 | } |
| 31 | 30 | ||
| 32 | bool operator<(const Version& rhs) const { | 31 | bool operator<(const Version& rhs) const { |
