From 732f5c0d66b634f4fae41006e0acf8dfb56f8fa1 Mon Sep 17 00:00:00 2001 From: dmaclach Date: Mon, 1 May 2023 13:40:03 -0700 Subject: [PATCH] remove newline-eof from strict warnings While newline-eof is a warning, it is not a very useful one. It causes build breakage with no real win to the end projects that have it turned on. --- strict_warnings_objc_library.bzl | 1 - 1 file changed, 1 deletion(-) diff --git a/strict_warnings_objc_library.bzl b/strict_warnings_objc_library.bzl index d7e8684..03bd7b6 100644 --- a/strict_warnings_objc_library.bzl +++ b/strict_warnings_objc_library.bzl @@ -14,7 +14,6 @@ COMMON_COPTS = [ "-Wdocumentation", # Warn when documentation is out of date. "-Wimplicit-atomic-properties", # Dynamic properties should be non-atomic. "-Wmissing-prototypes", # Global function is defined without a previous prototype. - "-Wnewline-eof", # No newline at the end of the file. "-Wno-error=deprecated", # Deprecation warnings are never errors. "-Wno-error=deprecated-implementations", # Deprecation warnings are never errors. "-Wno-partial-availability",