| 180 | #endif |
| 181 | |
| 182 | [[nodiscard]] std::string to_string() const |
| 183 | { |
| 184 | return std::to_string(major) + '.' + std::to_string(minor) + '.' + std::to_string(patch); |
| 185 | } |
| 186 | |
| 187 | friend std::ostream& operator<<(std::ostream& stream, const version& ver) |
| 188 | { |