1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00

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.
This commit is contained in:
Simon Tatham 2021-10-20 17:25:55 +01:00
parent 22911ccdcc
commit 6c24cb5c9f

View File

@ -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.
#