Skip to content

Commit 80b3e9c

Browse files
bruce-richardsontmonjalo
authored andcommitted
net/ice/base: disable MSVC warning
Disable warning about "zero extending 'unsigned long' to 'u64' of greater size" in base code builds. Cc: [email protected] Signed-off-by: Bruce Richardson <[email protected]>
1 parent d1ab1a2 commit 80b3e9c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

drivers/net/intel/ice/base/meson.build

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ if is_ms_compiler
3535
error_cflags = [
3636
'/wd4101', # unreferenced local variable
3737
'/wd4334', # result of 32-bit shift implicitly converted to 64 bits
38+
'/wd4319', # zero extending 'unsigned long' to 'u64' of greater size
3839
]
3940
else
4041
error_cflags = [

0 commit comments

Comments
 (0)