summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2018-11-29 19:30:08 +0000
committerStephen Kelly <steveire@gmail.com>2018-11-29 19:30:08 +0000
commit94231917810e218edad0c9ef7ccf03f5fee63e40 (patch)
tree45a770451f30ad227f8bb986a7f4a5e106a7d3f1 /lib
parente030444510df2ffaf23eeae35692dc363bc28439 (diff)
downloadclang-94231917810e218edad0c9ef7ccf03f5fee63e40.tar.gz
NFC: Constify ShowColors
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@347899 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/AST/ASTDumper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/ASTDumper.cpp b/lib/AST/ASTDumper.cpp
index e84814a96c..060bad5c9b 100644
--- a/lib/AST/ASTDumper.cpp
+++ b/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) {