summaryrefslogtreecommitdiffstats
path: root/Source/cmCallVisualStudioMacro.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-11-20 21:25:44 (GMT)
committerStephen Kelly <steveire@gmail.com>2014-11-20 21:25:44 (GMT)
commit41363c0c615848e9708c9105b0daeeef98f1f427 (patch)
tree8acca513d0c911dd539d6f1622d5b2a714da266e /Source/cmCallVisualStudioMacro.cxx
parent4efcfe52f491a6cd43809d5a182192060d77c5e8 (diff)
downloadCMake-41363c0c615848e9708c9105b0daeeef98f1f427.zip
CMake-41363c0c615848e9708c9105b0daeeef98f1f427.tar.gz
CMake-41363c0c615848e9708c9105b0daeeef98f1f427.tar.bz2
VisualStudio: Remove MSVC6 compatibility macro.
Diffstat (limited to 'Source/cmCallVisualStudioMacro.cxx')
-rw-r--r--Source/cmCallVisualStudioMacro.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/cmCallVisualStudioMacro.cxx b/Source/cmCallVisualStudioMacro.cxx
index 8f22f80..c211111 100644
--- a/Source/cmCallVisualStudioMacro.cxx
+++ b/Source/cmCallVisualStudioMacro.cxx
@@ -34,8 +34,6 @@ static bool LogErrorsAsMessages;
// Copied from a correct comdef.h to avoid problems with deficient versions
// of comdef.h that exist in the wild... Fixes issue #7533.
//
-#if ( _MSC_VER >= 1300 )
-// VS7 and later:
#ifdef _NATIVE_WCHAR_T_DEFINED
# ifdef _DEBUG
# pragma comment(lib, "comsuppwd.lib")
@@ -49,10 +47,6 @@ static bool LogErrorsAsMessages;
# pragma comment(lib, "comsupp.lib")
# endif
#endif
-#else
-// VS6 only had comsupp.lib:
-# pragma comment(lib, "comsupp.lib")
-#endif
//----------------------------------------------------------------------------