Removing some MSVC warning suppression flags.

Bug: webrtc:9251
Change-Id: Idf13b49648459a37fe0a3cac12ff993ce27439d9
Reviewed-on: https://webrtc-review.googlesource.com/84281
Reviewed-by: Patrik Höglund <phoglund@webrtc.org>
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#23685}
This commit is contained in:
Mirko Bonadei
2018-06-20 09:29:43 +02:00
committed by Commit Bot
parent b23db026d7
commit de212ca039
5 changed files with 0 additions and 92 deletions

View File

@ -128,13 +128,6 @@ rtc_static_library("audio_coding") {
]
}
if (is_win) {
cflags = [
# TODO(kjellander): Bug 261: fix this warning.
"/wd4373", # virtual function override.
]
}
deps = audio_coding_deps + [
"../../api/audio:audio_frame_api",
"..:module_api",
@ -1433,12 +1426,6 @@ if (rtc_include_tests) {
"//third_party/abseil-cpp/absl/types:optional",
]
defines = audio_coding_defines
if (is_win) {
cflags = [
# TODO(kjellander): bugs.webrtc.org/261: Fix this warning.
"/wd4373", # virtual function override.
]
}
if (!build_with_chromium && is_clang) {
# Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
@ -1632,13 +1619,6 @@ if (rtc_include_tests) {
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
}
if (is_win) {
cflags = [
# TODO(kjellander): bugs.webrtc.org/261: Fix this warning.
"/wd4373", # virtual function override.
]
}
deps += [
":neteq",
":neteq_test_tools",
@ -1980,13 +1960,6 @@ if (rtc_include_tests) {
data = [
"../../resources/speech_and_misc_wb.pcm",
]
if (is_win) {
cflags = [
# Disable warnings to enable Win64 build, issue 1323.
"/wd4267", # size_t to int truncation
]
}
}
rtc_source_set("isac_test_util") {