mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
Disable the implicit-int-float-conversion warning added in the latest Fuchsia Clang toolchain (#298)
This warning produces errors when building the current versions of Skia and ICU.
This commit is contained in:
parent
c69cead9b6
commit
c9561ea9f4
@ -25,6 +25,9 @@ config("extra_warnings") {
|
||||
"-Wthread-safety",
|
||||
]
|
||||
}
|
||||
if (is_fuchsia) {
|
||||
cflags += [ "-Wno-implicit-int-float-conversion" ]
|
||||
}
|
||||
|
||||
defines = [ "_LIBCPP_ENABLE_THREAD_SAFETY_ANNOTATIONS" ]
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user