diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-05-25 01:43:23 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-05-25 01:43:23 +0000 |
commit | fb3bd7127a768a7ce39ade409e80896a96e1d340 (patch) | |
tree | 64bc2500bd080912507008af8d224f6c67495fd0 /llvm/lib/Support/Twine.cpp | |
parent | 04cc665cef4393222a6e7cd828342f9e6283164c (diff) | |
download | bcm5719-llvm-fb3bd7127a768a7ce39ade409e80896a96e1d340.tar.gz bcm5719-llvm-fb3bd7127a768a7ce39ade409e80896a96e1d340.zip |
Prune CRLFs.
llvm-svn: 238125
Diffstat (limited to 'llvm/lib/Support/Twine.cpp')
-rw-r--r-- | llvm/lib/Support/Twine.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Support/Twine.cpp b/llvm/lib/Support/Twine.cpp index d2cc75b8c60..5d9d3dc7f5b 100644 --- a/llvm/lib/Support/Twine.cpp +++ b/llvm/lib/Support/Twine.cpp @@ -118,10 +118,10 @@ void Twine::printOneChildRepr(raw_ostream &OS, Child Ptr, OS << "stringref:\"" << Ptr.stringRef << "\""; break; - case Twine::SmallStringKind:
- OS << "smallstring:\""
- << *Ptr.smallString << "\"";
- break;
+ case Twine::SmallStringKind: + OS << "smallstring:\"" + << *Ptr.smallString << "\""; + break; case Twine::CharKind: OS << "char:\"" << Ptr.character << "\""; break; |