summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudioVersionedGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-01-28 16:21:23 (GMT)
committerBrad King <brad.king@kitware.com>2019-01-28 16:22:31 (GMT)
commitbf774e521b0a08dd8e09a93f76471cad593db3c6 (patch)
tree0220226acaeb0a123704fde94dab9ea093d7167e /Source/cmGlobalVisualStudioVersionedGenerator.cxx
parent142e67eac64613a836dd21542963878104c9b088 (diff)
downloadCMake-bf774e521b0a08dd8e09a93f76471cad593db3c6.zip
CMake-bf774e521b0a08dd8e09a93f76471cad593db3c6.tar.gz
CMake-bf774e521b0a08dd8e09a93f76471cad593db3c6.tar.bz2
VS: Remove stray semicolons from VS 2019 implementation
Diffstat (limited to 'Source/cmGlobalVisualStudioVersionedGenerator.cxx')
-rw-r--r--Source/cmGlobalVisualStudioVersionedGenerator.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGlobalVisualStudioVersionedGenerator.cxx b/Source/cmGlobalVisualStudioVersionedGenerator.cxx
index a83cc78..b019f39 100644
--- a/Source/cmGlobalVisualStudioVersionedGenerator.cxx
+++ b/Source/cmGlobalVisualStudioVersionedGenerator.cxx
@@ -10,11 +10,11 @@
#include "cmake.h"
#if defined(_M_ARM64)
-# define HOST_PLATFORM_NAME "ARM64";
+# define HOST_PLATFORM_NAME "ARM64"
#elif defined(_M_ARM)
-# define HOST_PLATFORM_NAME "ARM";
+# define HOST_PLATFORM_NAME "ARM"
#elif defined(_M_IA64)
-# define HOST_PLATFORM_NAME "Itanium";
+# define HOST_PLATFORM_NAME "Itanium"
#else
# include "cmsys/SystemInformation.hxx"
#endif