COMP: Need to choose between <new> and <new.h> based on whether standard headers are available.

This commit is contained in:
Brad King 2004-12-01 07:28:13 -05:00
parent ca2f4aa039
commit 920df088ab
1 changed files with 6 additions and 1 deletions

View File

@ -34,6 +34,7 @@
# ifdef _MSC_VER
# pragma warning (push, 1)
# pragma warning (disable: 4702)
# pragma warning (disable: 4995) /* Old streams are deprecated. */
# endif
# if @KWSYS_NAMESPACE@_IOS_USE_ANSI
# include <strstream>
@ -42,6 +43,11 @@
# elif @KWSYS_NAMESPACE@_IOS_USE_STRSTREA_H
# include <strstrea.h>
# endif
# if @KWSYS_NAMESPACE@_IOS_USE_ANSI
# include <new> // Need placement operator new.
# else
# include <new.h> // Need placement operator new.
# endif
# ifdef _MSC_VER
# pragma warning(pop)
# endif
@ -50,7 +56,6 @@
// ostringstream and istringstream classes.
# include <@KWSYS_NAMESPACE@/stl/string>
# include <new> // Need placement operator new.
namespace @KWSYS_NAMESPACE@_ios
{