diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2011-09-25 22:31:58 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2011-09-25 22:31:58 +0000 |
commit | 8be5c159df96c88880a50086a41efc86b89a46a4 (patch) | |
tree | 1ebab4c7feda3df655cd667b0fc38baf9b17e29d /include/clang | |
parent | b9c398b25b9c24769fb30b90c3805a500806e06f (diff) |
Actually remove the members of CaretDiagnostic no longer in use for
tracking the start and stop of macro expansion suppression. Also remove
the Columns variable which was just a convenience variable based on
DiagOpts. Instead we materialize it in the one piece of code that cared.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140475 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang')
-rw-r--r-- | include/clang/Frontend/TextDiagnosticPrinter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Frontend/TextDiagnosticPrinter.h b/include/clang/Frontend/TextDiagnosticPrinter.h index 3310426e24..354df101e6 100644 --- a/include/clang/Frontend/TextDiagnosticPrinter.h +++ b/include/clang/Frontend/TextDiagnosticPrinter.h @@ -68,7 +68,7 @@ private: void EmitCaretDiagnostic(SourceLocation Loc, SmallVectorImpl<CharSourceRange> &Ranges, const SourceManager &SM, - ArrayRef<FixItHint> Hints, unsigned Columns); + ArrayRef<FixItHint> Hints); }; |