projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
adf9c8b
)
Don't infinitely recurse! Patch by Marius Wachtler!
author
Chris Lattner
<sabre@nondot.org>
Thu, 27 Jan 2011 07:35:27 +0000
(07:35 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Thu, 27 Jan 2011 07:35:27 +0000
(07:35 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124366
91177308
-0d34-0410-b5e6-
96231b3b80d8
unittests/ADT/StringRefTest.cpp
patch
|
blob
|
history
diff --git
a/unittests/ADT/StringRefTest.cpp
b/unittests/ADT/StringRefTest.cpp
index 7e4d0dcd413fcc4fa7588be160e01a4aedbaded0..5731e4abaf1525055a2ddc6ba98b08b141aa097c 100644
(file)
--- a/
unittests/ADT/StringRefTest.cpp
+++ b/
unittests/ADT/StringRefTest.cpp
@@
-16,7
+16,7
@@
using namespace llvm;
namespace llvm {
std::ostream &operator<<(std::ostream &OS, const StringRef &S) {
- OS << S;
+ OS << S
.str()
;
return OS;
}