Skip to content

Commit 438402d

Browse files
Silence narrowing-conversion errors.
1 parent f552736 commit 438402d

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

apps/BUILD

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ windows_copts = [
2020
"/Iexternal/gemmlowp",
2121
"/wd4018",
2222
"/wd4577",
23+
"/wd4267", # Silence "narrowing conversion" errors.
2324
"/DNOGDI",
2425
"/UTF_COMPILE_LIBRARY",
2526
]

tests/BUILD

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ windows_copts = [
2626
"/Iexternal/gemmlowp",
2727
"/wd4018",
2828
"/wd4577",
29+
"/wd4267", # Silence "narrowing conversion" errors.
2930
"/DNOGDI",
3031
"/UTF_COMPILE_LIBRARY",
3132
]

0 commit comments

Comments
 (0)