summaryrefslogtreecommitdiffstats
path: root/Source/cmStandardIncludes.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-02-10 17:56:08 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2015-02-10 17:56:08 (GMT)
commitcbffbf7437ea2d571e26bedee032c23be9347d94 (patch)
treeecd39316ec65c1fff7a75972b0bfee28e0a6bedd /Source/cmStandardIncludes.h
parent2fd44b082b0a8e546c73d921f9d8264a668c3b78 (diff)
parentaf65da0aa97f20947f93ddcf9872d23d671f699b (diff)
downloadCMake-cbffbf7437ea2d571e26bedee032c23be9347d94.zip
CMake-cbffbf7437ea2d571e26bedee032c23be9347d94.tar.gz
CMake-cbffbf7437ea2d571e26bedee032c23be9347d94.tar.bz2
Merge topic 'cmStandardIncludes-cleanup'
af65da0a cmStandardIncludes: Remove list include. e848cc50 cmStandardIncludes: Remove deque include. 5fea6898 cmStandardIncludes: Remove some VS6 workarounds.
Diffstat (limited to 'Source/cmStandardIncludes.h')
-rw-r--r--Source/cmStandardIncludes.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/Source/cmStandardIncludes.h b/Source/cmStandardIncludes.h
index 646300d..77b4f62 100644
--- a/Source/cmStandardIncludes.h
+++ b/Source/cmStandardIncludes.h
@@ -22,7 +22,6 @@
#ifdef _MSC_VER
#pragma warning ( disable : 4786 )
#pragma warning ( disable : 4503 )
-#pragma warning ( disable : 4512 ) /* operator=() could not be generated */
#endif
@@ -42,11 +41,6 @@
# include <cmsys/IOStream.hxx>
#endif
-// Avoid warnings in system headers.
-#if defined(_MSC_VER)
-# pragma warning (push,1)
-#endif
-
#include <fstream>
#include <iostream>
#include <iomanip>
@@ -59,13 +53,7 @@
#include <algorithm>
#include <functional>
#include <map>
-#include <list>
#include <set>
-#include <deque>
-
-#if defined(_MSC_VER)
-# pragma warning(pop)
-#endif
// include the "c" string header
#include <string.h>