From 0052bd4a34019481b59c58b54d9dc40309ee4a42 Mon Sep 17 00:00:00 2001 From: Nick Kledzik Date: Mon, 13 Jan 2014 04:08:15 +0000 Subject: [PATCH] Fix spacing llvm-svn: 199074 --- lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp b/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp index 2bcc16c2f4da..6825b76bee74 100644 --- a/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp +++ b/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp @@ -153,7 +153,7 @@ private: // Allocate a new copy of this string in _storage, so the strings // can be freed when RefNameBuilder is destroyed. StringRef copyString(StringRef str) { - char* s = _storage.Allocate(str.size()); + char *s = _storage.Allocate(str.size()); memcpy(s, str.data(), str.size()); return StringRef(s, str.size()); } @@ -638,7 +638,7 @@ template <> struct MappingTraits { // Allocate a new copy of this string in _storage, so the strings // can be freed when File is destroyed. StringRef copyString(StringRef str) { - char* s = _storage.Allocate(str.size()); + char *s = _storage.Allocate(str.size()); memcpy(s, str.data(), str.size()); return StringRef(s, str.size()); }