From 8dee57a75ddb44842777fb8def914efc15387894 Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Mon, 15 Sep 2014 22:20:31 +0000 Subject: [PATCH] Fix indenting caused by clang-format+spuriously indented access specifier in r216925 Caught in post-commit review by Justin Bogner. llvm-svn: 217837 --- llvm/include/llvm/Support/SpecialCaseList.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/llvm/include/llvm/Support/SpecialCaseList.h b/llvm/include/llvm/Support/SpecialCaseList.h index c734fc8daa80..313212e59dd2 100644 --- a/llvm/include/llvm/Support/SpecialCaseList.h +++ b/llvm/include/llvm/Support/SpecialCaseList.h @@ -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 create(StringRef Path, + static std::unique_ptr 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 create(const MemoryBuffer *MB, + static std::unique_ptr 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 createOrDie(StringRef Path); + static std::unique_ptr 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;