Only emit one set of braces for __VERSION__, getClangFullRepositoryVersion already adds some.

No test as the output is highly dependend on the local configuration.

llvm-svn: 157520
This commit is contained in:
Benjamin Kramer 2012-05-26 19:39:52 +00:00
parent d70b14ea9d
commit 7b01b578a9
1 changed files with 1 additions and 2 deletions

View File

@ -136,8 +136,7 @@ std::string getClangFullCPPVersion() {
#ifdef CLANG_VENDOR
OS << CLANG_VENDOR;
#endif
OS << "Clang " CLANG_VERSION_STRING " ("
<< getClangFullRepositoryVersion() << ')';
OS << "Clang " CLANG_VERSION_STRING " " << getClangFullRepositoryVersion();
return OS.str();
}