diff options
author | Daniel Jasper <djasper@google.com> | 2013-07-08 14:34:09 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2013-07-08 14:34:09 +0000 |
commit | 3ac9b9e258cfd7134fa5243c570aad7804c39ba8 (patch) | |
tree | aebc05b11379a86aa4991efeeb462b6f9e30695d /clang/lib/Format/WhitespaceManager.h | |
parent | ee7539a387eb71f76eb4ea241ad1ce2b6078db89 (diff) | |
download | bcm5719-llvm-3ac9b9e258cfd7134fa5243c570aad7804c39ba8.tar.gz bcm5719-llvm-3ac9b9e258cfd7134fa5243c570aad7804c39ba8.zip |
Reformat clang-format's source files after r185822 and others.
llvm-svn: 185823
Diffstat (limited to 'clang/lib/Format/WhitespaceManager.h')
-rw-r--r-- | clang/lib/Format/WhitespaceManager.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/clang/lib/Format/WhitespaceManager.h b/clang/lib/Format/WhitespaceManager.h index 11167fa4c3c..9ca34806374 100644 --- a/clang/lib/Format/WhitespaceManager.h +++ b/clang/lib/Format/WhitespaceManager.h @@ -75,11 +75,11 @@ private: struct Change { /// \brief Functor to sort changes in original source order. class IsBeforeInFile { - public: + public: IsBeforeInFile(const SourceManager &SourceMgr) : SourceMgr(SourceMgr) {} bool operator()(const Change &C1, const Change &C2) const; - private: + private: const SourceManager &SourceMgr; }; @@ -126,7 +126,6 @@ private: unsigned TokenLength; unsigned PreviousEndOfTokenColumn; unsigned EscapedNewlineColumn; - }; /// \brief Calculate \c IsTrailingComment, \c TokenLength for the last tokens |