remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports

them into the clang namespace.

llvm-svn: 135852
This commit is contained in:
Chris Lattner
2011-07-23 10:55:15 +00:00
parent 95c664b300
commit 0e62c1cc0b
243 changed files with 2240 additions and 2290 deletions

View File

@@ -25,7 +25,7 @@ std::string VersionTuple::getAsString() const {
return Result;
}
llvm::raw_ostream& clang::operator<<(llvm::raw_ostream &Out,
raw_ostream& clang::operator<<(raw_ostream &Out,
const VersionTuple &V) {
Out << V.getMajor();
if (llvm::Optional<unsigned> Minor = V.getMinor())