From bf86d08102c17a235611a2db29bfe3948d6b5748 Mon Sep 17 00:00:00 2001 From: Chris Bracken Date: Mon, 26 Aug 2019 21:11:57 -0700 Subject: [PATCH] Add missing newline at EOF (#11473) This was required by the C++ spec pre-C++11 and still gets picked up in the Fuchsia tree due to -Wnewline-eof. It fixes: ../../third_party/flutter/lib/ui/text/line_metrics.h:75:47: error: no newline at end of file [-Werror,-Wnewline-eof] #endif // FLUTTER_LIB_UI_TEXT_LINE_METRICS_H_ --- lib/ui/text/line_metrics.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ui/text/line_metrics.h b/lib/ui/text/line_metrics.h index fc9860a0b..bcd53c3d2 100644 --- a/lib/ui/text/line_metrics.h +++ b/lib/ui/text/line_metrics.h @@ -72,4 +72,4 @@ struct DartListFactory { } // namespace tonic -#endif // FLUTTER_LIB_UI_TEXT_LINE_METRICS_H_ \ No newline at end of file +#endif // FLUTTER_LIB_UI_TEXT_LINE_METRICS_H_ -- GitLab