Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2021-10-20 19:25:55 +0300
committerSimon Tatham <anakin@pobox.com>2021-10-21 22:42:25 +0300
commit6c24cb5c9fbeb34de7544b24d65bf21ad87a7d86 (patch)
tree4e8ca8c67ce5f6f8abbf081a42dccc4f04cb1483 /cmake
parent22911ccdcc37c7955bfc1c45a88d3762d1206da7 (diff)
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.
Diffstat (limited to 'cmake')
-rw-r--r--cmake/platforms/windows.cmake2
1 files changed, 1 insertions, 1 deletions
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.
#