diff options
| author | Stephen Kelly <steveire@gmail.com> | 2018-11-29 19:30:08 +0000 |
|---|---|---|
| committer | Stephen Kelly <steveire@gmail.com> | 2018-11-29 19:30:08 +0000 |
| commit | e66308b0da6675bee512e50a9c425aff3ce41ccf (patch) | |
| tree | 2a799696bdb8209963d232d8315bc783b2a16083 | |
| parent | 6cd0b170782a2a03d6f6383a64031474b048d198 (diff) | |
| download | bcm5719-llvm-e66308b0da6675bee512e50a9c425aff3ce41ccf.tar.gz bcm5719-llvm-e66308b0da6675bee512e50a9c425aff3ce41ccf.zip | |
NFC: Constify ShowColors
llvm-svn: 347899
| -rw-r--r-- | clang/lib/AST/ASTDumper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/ASTDumper.cpp b/clang/lib/AST/ASTDumper.cpp index e84814a96c0..060bad5c9be 100644 --- a/clang/lib/AST/ASTDumper.cpp +++ b/clang/lib/AST/ASTDumper.cpp @@ -126,7 +126,7 @@ namespace { /// The \c FullComment parent of the comment being dumped. const FullComment *FC = nullptr; - bool ShowColors; + const bool ShowColors; /// Dump a child of the current node. template<typename Fn> void dumpChild(Fn doDumpChild) { |

