From f7659e715fc9662e6fe1fddb4eaa50d18c1f3c6d Mon Sep 17 00:00:00 2001 From: Justin Bogner Date: Wed, 7 May 2014 21:50:43 +0000 Subject: [PATCH] llvm-cov: Fix some funny indentation (NFC) Noticed by Duncan Exon Smith. Thanks! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208253 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/GCOV.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Support/GCOV.h b/include/llvm/Support/GCOV.h index e06c0fa1dcf..0cb6cfd62cc 100644 --- a/include/llvm/Support/GCOV.h +++ b/include/llvm/Support/GCOV.h @@ -389,7 +389,7 @@ public: const GCOVFunction *Function) { if (Line > LineInfo[Filename].LastLine) LineInfo[Filename].LastLine = Line; - LineInfo[Filename].Functions[Line-1].push_back(Function); + LineInfo[Filename].Functions[Line-1].push_back(Function); } void setRunCount(uint32_t Runs) { RunCount = Runs; } void setProgramCount(uint32_t Programs) { ProgramCount = Programs; } -- 2.34.1