From 6c24cb5c9fbeb34de7544b24d65bf21ad87a7d86 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Wed, 20 Oct 2021 17:25:55 +0100 Subject: [PATCH] Fix paste error in comment. For some reason, in my comment explaining which Visual Studio compile warnings I'd suppressed and why, one of the warning numbers in the comment totally failed to match the one in the suppression option! I probably pasted it from some other warning in that compile, which I fixed rather than suppressing. --- cmake/platforms/windows.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/platforms/windows.cmake b/cmake/platforms/windows.cmake index fb245003..ef3f7825 100644 --- a/cmake/platforms/windows.cmake +++ b/cmake/platforms/windows.cmake @@ -105,7 +105,7 @@ if(CMAKE_C_COMPILER_ID MATCHES "MSVC") # comes up a lot, and generally my spot checks make it look as if # it's OK. # - # - 4235: applying unary '-' to an unsigned type. We do that all + # - 4146: applying unary '-' to an unsigned type. We do that all # the time in deliberate bit-twiddling code like mpint.c or # crypto implementations. #