File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
llvm/include/llvm/Demangle Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -2632,7 +2632,8 @@ template<typename NodeT> struct NodeKind;
2632
2632
#include " ItaniumNodes.def"
2633
2633
2634
2634
inline bool NodeArray::printAsString (OutputBuffer &OB) const {
2635
- auto Fail = [&OB, StartPos = OB.getCurrentPosition ()] {
2635
+ auto StartPos = OB.getCurrentPosition ();
2636
+ auto Fail = [&OB, StartPos] {
2636
2637
OB.setCurrentPosition (StartPos);
2637
2638
return false ;
2638
2639
};
Original file line number Diff line number Diff line change @@ -2632,7 +2632,8 @@ template<typename NodeT> struct NodeKind;
2632
2632
#include " ItaniumNodes.def"
2633
2633
2634
2634
inline bool NodeArray::printAsString (OutputBuffer &OB) const {
2635
- auto Fail = [&OB, StartPos = OB.getCurrentPosition ()] {
2635
+ auto StartPos = OB.getCurrentPosition ();
2636
+ auto Fail = [&OB, StartPos] {
2636
2637
OB.setCurrentPosition (StartPos);
2637
2638
return false ;
2638
2639
};
You can’t perform that action at this time.
0 commit comments