diff options
Diffstat (limited to '3rdparty/catch/include/internal/catch_version.hpp')
-rw-r--r-- | 3rdparty/catch/include/internal/catch_version.hpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/3rdparty/catch/include/internal/catch_version.hpp b/3rdparty/catch/include/internal/catch_version.hpp index cca4c6e0816..279facf551b 100644 --- a/3rdparty/catch/include/internal/catch_version.hpp +++ b/3rdparty/catch/include/internal/catch_version.hpp @@ -26,18 +26,18 @@ namespace Catch { {} std::ostream& operator << ( std::ostream& os, Version const& version ) { - os << version.majorVersion << "." - << version.minorVersion << "." + os << version.majorVersion << '.' + << version.minorVersion << '.' << version.patchNumber; if( !version.branchName.empty() ) { - os << "-" << version.branchName - << "." << version.buildNumber; + os << '-' << version.branchName + << '.' << version.buildNumber; } return os; } - Version libraryVersion( 1, 5, 8, "", 0 ); + Version libraryVersion( 1, 7, 0, "", 0 ); } |