From f3d9b256a536da07b93fb045d380007561e9c1b2 Mon Sep 17 00:00:00 2001 From: pkasting Date: Tue, 21 Jul 2015 19:43:46 -0700 Subject: [PATCH] Enable MSVC warning C4018 for third_party/sqlite now that it is fixed. BUG=398202 TEST=none TBR=shess Review URL: https://codereview.chromium.org/1247803007 Cr-Commit-Position: refs/heads/master@{#339823} --- third_party/sqlite/sqlite.gyp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/sqlite/sqlite.gyp b/third_party/sqlite/sqlite.gyp index 366582487445..96c867d12a33 100644 --- a/third_party/sqlite/sqlite.gyp +++ b/third_party/sqlite/sqlite.gyp @@ -134,7 +134,7 @@ ], }, 'msvs_disabled_warnings': [ - 4018, 4244, 4267, + 4244, 4267, ], 'conditions': [ ['OS=="linux"', { -- 2.11.4.GIT