Skip to content

Commit

Permalink
Change version string to 'swift-5.7.2-RELEASE'
Browse files Browse the repository at this point in the history
  • Loading branch information
shahmishal committed Dec 13, 2022
1 parent 3d4a7e6 commit 0c49059
Showing 1 changed file with 1 addition and 24 deletions.
25 changes: 1 addition & 24 deletions lib/Basic/Version.cpp
Expand Up @@ -411,30 +411,7 @@ std::string getSwiftFullVersion(Version effectiveVersion) {
OS << SWIFT_VENDOR " ";
#endif

OS << "Swift version " SWIFT_VERSION_STRING;
#ifndef SWIFT_COMPILER_VERSION
OS << "-dev";
#endif

if (effectiveVersion != Version::getCurrentLanguageVersion()) {
OS << " effective-" << effectiveVersion;
}

#if defined(SWIFT_COMPILER_VERSION)
OS << " (swiftlang-" SWIFT_COMPILER_VERSION;
#if defined(CLANG_COMPILER_VERSION)
OS << " clang-" CLANG_COMPILER_VERSION;
#endif
OS << ")";
#elif defined(LLVM_REVISION) || defined(SWIFT_REVISION)
OS << " (";
printFullRevisionString(OS);
OS << ")";
#endif

// Suppress unused function warning
(void)&printFullRevisionString;

OS << "Swift version " SWIFT_VERSION_STRING " (swift-5.7.2-RELEASE)";
return OS.str();
}

Expand Down

0 comments on commit 0c49059

Please sign in to comment.