forked from OSchip/llvm-project
[clang-format] Fix build on gcc < 7 introduced in rG9363aa9.
This fixes another bogus build error on gcc, e.g. https://lab.llvm.org/buildbot/#/builders/110/builds/2974. /home/ssglocal/clang-cmake-x86_64-avx2-linux/clang-cmake-x86_64-avx2-linux/llvm/clang/lib/Format/TokenAnnotator.cpp:3412:34: error: binding ‘const clang::format::FormatStyle’ to reference of type ‘clang::format::FormatStyle&’ discards qualifiers auto ShouldAddSpacesInAngles = [&Style = this->Style, ^
This commit is contained in:
parent
d138e97c2a
commit
40c2d6188b
|
@ -3409,11 +3409,10 @@ bool TokenAnnotator::spaceRequiredBefore(const AnnotatedLine &Line,
|
|||
return Style.SpaceAfterCStyleCast ||
|
||||
Right.isOneOf(TT_BinaryOperator, TT_SelectorName);
|
||||
|
||||
auto ShouldAddSpacesInAngles = [&Style = this->Style,
|
||||
&HasExistingWhitespace]() {
|
||||
if (Style.SpacesInAngles == FormatStyle::SIAS_Always)
|
||||
auto ShouldAddSpacesInAngles = [this, &HasExistingWhitespace]() {
|
||||
if (this->Style.SpacesInAngles == FormatStyle::SIAS_Always)
|
||||
return true;
|
||||
if (Style.SpacesInAngles == FormatStyle::SIAS_Leave)
|
||||
if (this->Style.SpacesInAngles == FormatStyle::SIAS_Leave)
|
||||
return HasExistingWhitespace();
|
||||
return false;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue