diff options
author | Brad King <brad.king@kitware.com> | 2019-01-28 16:21:23 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-01-28 16:22:31 (GMT) |
commit | bf774e521b0a08dd8e09a93f76471cad593db3c6 (patch) | |
tree | 0220226acaeb0a123704fde94dab9ea093d7167e /Source/cmGlobalVisualStudioVersionedGenerator.cxx | |
parent | 142e67eac64613a836dd21542963878104c9b088 (diff) | |
download | CMake-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.cxx | 6 |
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 |