Merge pull request #29050 from jiakai0419:dev_gtl

PiperOrigin-RevId: 250732215
This commit is contained in:
TensorFlower Gardener 2019-05-30 11:59:50 -07:00
commit d866f749d3

View File

@ -19,7 +19,7 @@ limitations under the License.
// need more sophisticated syntax than that.
//
// Example:
// void func() {}
// void func() {
// FILE* fp = fopen("data.txt", "r");
// if (fp == nullptr) return;
// auto fp_cleaner = gtl::MakeCleanup([fp] { fclose(fp); });