Support: remove unnecessary namespace

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207545 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duncan P. N. Exon Smith 2014-04-29 16:15:39 +00:00
parent 048f520b91
commit d699090a22

View File

@ -73,11 +73,7 @@ uint64_t BranchProbability::scaleByInverse(uint64_t Num) const {
return ::scale(Num, D, N);
}
namespace llvm {
raw_ostream &operator<<(raw_ostream &OS, const BranchProbability &Prob) {
raw_ostream &llvm::operator<<(raw_ostream &OS, const BranchProbability &Prob) {
Prob.print(OS);
return OS;
}
}