Skip to content

Commit

Permalink
Change version string to 'swift-3.0.1-PREVIEW-1'.
Browse files Browse the repository at this point in the history
  • Loading branch information
shahmishal committed Sep 22, 2016
1 parent da4d996 commit 6b4e0b3
Showing 1 changed file with 1 addition and 21 deletions.
22 changes: 1 addition & 21 deletions lib/Basic/Version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -316,27 +316,7 @@ std::string getSwiftFullVersion() {
OS << SWIFT_VENDOR " ";
#endif

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

#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(CLANG_REVISION) || \
defined(SWIFT_REVISION)
OS << " (";
printFullRevisionString(OS);
OS << ")";
#endif

// Suppress unused function warning
(void) printFullRevisionString;

OS << "Swift version " SWIFT_VERSION_STRING " (swift-3.0.1-PREVIEW-1)";
return OS.str();
}

Expand Down

0 comments on commit 6b4e0b3

Please sign in to comment.