aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/Twine.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2014-02-26 23:27:16 +0000
committerEric Christopher <echristo@gmail.com>2014-02-26 23:27:16 +0000
commita13839f5ca8f72d480f09c6eaed1f4e8bd49fb0d (patch)
tree1fbc8b00a55fb7d6b8207b8d983b6aa9c0e747b9 /llvm/lib/Support/Twine.cpp
parent9f240f742b9dc03a0e3ea0ee56f700c5c49dc532 (diff)
downloadllvm-a13839f5ca8f72d480f09c6eaed1f4e8bd49fb0d.zip
llvm-a13839f5ca8f72d480f09c6eaed1f4e8bd49fb0d.tar.gz
llvm-a13839f5ca8f72d480f09c6eaed1f4e8bd49fb0d.tar.bz2
Remove unnecessary llvm:: qualification.
llvm-svn: 202316
Diffstat (limited to 'llvm/lib/Support/Twine.cpp')
-rw-r--r--llvm/lib/Support/Twine.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Support/Twine.cpp b/llvm/lib/Support/Twine.cpp
index 3d04bc3..56ed964 100644
--- a/llvm/lib/Support/Twine.cpp
+++ b/llvm/lib/Support/Twine.cpp
@@ -163,9 +163,9 @@ void Twine::printRepr(raw_ostream &OS) const {
}
void Twine::dump() const {
- print(llvm::dbgs());
+ print(dbgs());
}
void Twine::dumpRepr() const {
- printRepr(llvm::dbgs());
+ printRepr(dbgs());
}