From 51d79b1f8e44c300d05d8b9beed9acd36fa7d645 Mon Sep 17 00:00:00 2001 From: Hans Wennborg <hans@hanshq.net> Date: Sat, 24 May 2014 20:18:32 +0000 Subject: [PATCH] Fix some misplaced spaces around 'override' git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@209588 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h | 2 +- lib/CodeGen/MicrosoftCXXABI.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h b/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h index d49b64c2b9c..f352f806eb9 100644 --- a/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h +++ b/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h @@ -185,7 +185,7 @@ public: /// Visitor that tries to report interesting diagnostics from conditions. class ConditionBRVisitor : public BugReporterVisitorImpl<ConditionBRVisitor> { public: - void Profile(llvm::FoldingSetNodeID &ID) const override{ + void Profile(llvm::FoldingSetNodeID &ID) const override { static int x = 0; ID.AddPointer(&x); } diff --git a/lib/CodeGen/MicrosoftCXXABI.cpp b/lib/CodeGen/MicrosoftCXXABI.cpp index 4887a65ce8c..dee565a873c 100644 --- a/lib/CodeGen/MicrosoftCXXABI.cpp +++ b/lib/CodeGen/MicrosoftCXXABI.cpp @@ -50,7 +50,7 @@ public: // arbitrary. StringRef GetDeletedVirtualCallName() override { return "_purecall"; } - bool isInlineInitializedStaticDataMemberLinkOnce() override{ return true; } + bool isInlineInitializedStaticDataMemberLinkOnce() override { return true; } llvm::Value *adjustToCompleteObject(CodeGenFunction &CGF, llvm::Value *ptr, -- GitLab