diff options
Diffstat (limited to 'clang/lib/Format/Format.cpp')
-rw-r--r-- | clang/lib/Format/Format.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Format/Format.cpp b/clang/lib/Format/Format.cpp index 84f07ab28e8..791035c3076 100644 --- a/clang/lib/Format/Format.cpp +++ b/clang/lib/Format/Format.cpp @@ -723,7 +723,7 @@ private: Current.is(tok::kw_return) || (Previous && (Previous->opensScope() || Previous->getPrecedence() == prec::Assignment)); - for (SmallVector<prec::Level, 4>::const_reverse_iterator + for (SmallVectorImpl<prec::Level>::const_reverse_iterator I = Current.FakeLParens.rbegin(), E = Current.FakeLParens.rend(); I != E; ++I) { |