diff options
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/Twine.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Support/Twine.cpp b/llvm/lib/Support/Twine.cpp index 5d9d3dc7f5b..020dd9596d9 100644 --- a/llvm/lib/Support/Twine.cpp +++ b/llvm/lib/Support/Twine.cpp @@ -119,8 +119,7 @@ void Twine::printOneChildRepr(raw_ostream &OS, Child Ptr, << Ptr.stringRef << "\""; break; case Twine::SmallStringKind: - OS << "smallstring:\"" - << *Ptr.smallString << "\""; + OS << "smallstring:\"" << *Ptr.smallString << "\""; break; case Twine::CharKind: OS << "char:\"" << Ptr.character << "\""; |