NFC: Use this-> to appease GCC bug related to template lambda.
authorRiver Riddle <riverriddle@google.com>
Wed, 18 Dec 2019 00:19:17 +0000 (16:19 -0800)
committerA. Unique TensorFlower <gardener@tensorflow.org>
Wed, 18 Dec 2019 00:19:47 +0000 (16:19 -0800)
commit5a0d4803f7a8de13f81203072bce4b44ebacb7a1
tree485a788de35bebb41323cc6da56f7f452fcf09d8
parent74278dd01e5713920a35f1c3e0731e535667c19a
NFC: Use this-> to appease GCC bug related to template lambda.

GCC is unable to properly implicitly capture 'this' in generic lambdas. This bug is not fixed until 7.1.0:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67274

PiperOrigin-RevId: 286083427
mlir/examples/toy/Ch1/parser/AST.cpp
mlir/examples/toy/Ch2/parser/AST.cpp
mlir/examples/toy/Ch3/parser/AST.cpp
mlir/examples/toy/Ch4/parser/AST.cpp
mlir/examples/toy/Ch5/parser/AST.cpp
mlir/examples/toy/Ch6/parser/AST.cpp
mlir/examples/toy/Ch7/parser/AST.cpp
mlir/lib/Dialect/SPIRV/Serialization/Serializer.cpp