From 49326e4d8467813ef08102389dbb143e329fdef9 Mon Sep 17 00:00:00 2001 From: George Rimar Date: Wed, 7 Dec 2016 19:44:27 +0000 Subject: [PATCH] Format. NFC. llvm-svn: 288967 --- lld/ELF/InputFiles.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lld/ELF/InputFiles.cpp b/lld/ELF/InputFiles.cpp index 3dfb9e569ff8..92b1439f9390 100644 --- a/lld/ELF/InputFiles.cpp +++ b/lld/ELF/InputFiles.cpp @@ -92,7 +92,7 @@ std::string elf::ObjectFile::getLineInfo(InputSectionBase *S, if (Info.Line == 0) return ""; std::string Ret = Info.FileName + ":" + std::to_string(Info.Line); - convertToUnixPathSeparator({(char*)Ret.data(), Ret.size()}); + convertToUnixPathSeparator({(char *)Ret.data(), Ret.size()}); return Ret; }