cmStandardIncludes: Remove some VS6 workarounds.

Added in commit v2.6.0~2824 (COMP: Fix warnings in system headers
on VS6., 2006-08-29), but no longer needed.
This commit is contained in:
Stephen Kelly 2015-01-12 21:05:34 +01:00
parent 098160d5f2
commit 5fea689834
1 changed files with 0 additions and 10 deletions

View File

@ -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>
@ -63,10 +57,6 @@
#include <set>
#include <deque>
#if defined(_MSC_VER)
# pragma warning(pop)
#endif
// include the "c" string header
#include <string.h>
#include <stdio.h>