[llvm] r217837 - Fix indenting caused by clang-format+spuriously indented access specifier in r216925

David Blaikie dblaikie at gmail.com
Mon Sep 15 15:20:32 PDT 2014


Author: dblaikie
Date: Mon Sep 15 17:20:31 2014
New Revision: 217837

URL: http://llvm.org/viewvc/llvm-project?rev=217837&view=rev
Log:
Fix indenting caused by clang-format+spuriously indented access specifier in r216925

Caught in post-commit review by Justin Bogner.

Modified:
    llvm/trunk/include/llvm/Support/SpecialCaseList.h

Modified: llvm/trunk/include/llvm/Support/SpecialCaseList.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/SpecialCaseList.h?rev=217837&r1=217836&r2=217837&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/SpecialCaseList.h (original)
+++ llvm/trunk/include/llvm/Support/SpecialCaseList.h Mon Sep 15 17:20:31 2014
@@ -56,19 +56,19 @@ class Regex;
 class StringRef;
 
 class SpecialCaseList {
- public:
+public:
   /// Parses the special case list from a file. If Path is empty, returns
   /// an empty special case list. On failure, returns 0 and writes an error
   /// message to string.
-   static std::unique_ptr<SpecialCaseList> create(StringRef Path,
+  static std::unique_ptr<SpecialCaseList> create(StringRef Path,
                                                   std::string &Error);
   /// Parses the special case list from a memory buffer. On failure, returns
   /// 0 and writes an error message to string.
-   static std::unique_ptr<SpecialCaseList> create(const MemoryBuffer *MB,
+  static std::unique_ptr<SpecialCaseList> create(const MemoryBuffer *MB,
                                                   std::string &Error);
   /// Parses the special case list from a file. On failure, reports a fatal
   /// error.
-   static std::unique_ptr<SpecialCaseList> createOrDie(StringRef Path);
+  static std::unique_ptr<SpecialCaseList> createOrDie(StringRef Path);
 
   ~SpecialCaseList();
 
@@ -80,7 +80,7 @@ class SpecialCaseList {
   bool inSection(StringRef Section, StringRef Query,
                  StringRef Category = StringRef()) const;
 
- private:
+private:
   SpecialCaseList(SpecialCaseList const &) LLVM_DELETED_FUNCTION;
   SpecialCaseList &operator=(SpecialCaseList const &) LLVM_DELETED_FUNCTION;
 





More information about the llvm-commits mailing list