diff options
author | Daniel Jasper <djasper@google.com> | 2015-05-12 11:14:06 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2015-05-12 11:14:06 +0000 |
commit | 56807c19ac5f845a85d271c631d3bc3d54eb69a0 (patch) | |
tree | 4fa6cc8a5239ad301a6627300d1d98d2a72ee08b /clang/lib/Format | |
parent | cb3b0c6eeb850fd55398ea92aef38777f33e172b (diff) | |
download | bcm5719-llvm-56807c19ac5f845a85d271c631d3bc3d54eb69a0.tar.gz bcm5719-llvm-56807c19ac5f845a85d271c631d3bc3d54eb69a0.zip |
clang-format: Make member introduced in r237108 const.
llvm-svn: 237114
Diffstat (limited to 'clang/lib/Format')
-rw-r--r-- | clang/lib/Format/UnwrappedLineFormatter.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/lib/Format/UnwrappedLineFormatter.cpp b/clang/lib/Format/UnwrappedLineFormatter.cpp index 43f65dd04b2..9c8b5ba08eb 100644 --- a/clang/lib/Format/UnwrappedLineFormatter.cpp +++ b/clang/lib/Format/UnwrappedLineFormatter.cpp @@ -109,8 +109,7 @@ private: const FormatStyle &Style; const AdditionalKeywords &Keywords; - - unsigned AdditionalIndent; + const unsigned AdditionalIndent; /// \brief The indent in characters for each level. std::vector<int> IndentForLevel; |