Fix indenting caused by clang-format+spuriously indented access specifier in r216925

Caught in post-commit review by Justin Bogner.

llvm-svn: 217837
This commit is contained in:
David Blaikie 2014-09-15 22:20:31 +00:00
parent b93b36815d
commit 8dee57a75d
1 changed files with 5 additions and 5 deletions

View File

@ -56,19 +56,19 @@ class Regex;
class StringRef; class StringRef;
class SpecialCaseList { class SpecialCaseList {
public: public:
/// Parses the special case list from a file. If Path is empty, returns /// 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 /// an empty special case list. On failure, returns 0 and writes an error
/// message to string. /// message to string.
static std::unique_ptr<SpecialCaseList> create(StringRef Path, static std::unique_ptr<SpecialCaseList> create(StringRef Path,
std::string &Error); std::string &Error);
/// Parses the special case list from a memory buffer. On failure, returns /// Parses the special case list from a memory buffer. On failure, returns
/// 0 and writes an error message to string. /// 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); std::string &Error);
/// Parses the special case list from a file. On failure, reports a fatal /// Parses the special case list from a file. On failure, reports a fatal
/// error. /// error.
static std::unique_ptr<SpecialCaseList> createOrDie(StringRef Path); static std::unique_ptr<SpecialCaseList> createOrDie(StringRef Path);
~SpecialCaseList(); ~SpecialCaseList();
@ -80,7 +80,7 @@ class SpecialCaseList {
bool inSection(StringRef Section, StringRef Query, bool inSection(StringRef Section, StringRef Query,
StringRef Category = StringRef()) const; StringRef Category = StringRef()) const;
private: private:
SpecialCaseList(SpecialCaseList const &) LLVM_DELETED_FUNCTION; SpecialCaseList(SpecialCaseList const &) LLVM_DELETED_FUNCTION;
SpecialCaseList &operator=(SpecialCaseList const &) LLVM_DELETED_FUNCTION; SpecialCaseList &operator=(SpecialCaseList const &) LLVM_DELETED_FUNCTION;