From e629d743b404b7b02ae7d45ecae65bee4693ed76 Mon Sep 17 00:00:00 2001 From: Brad King <brad.king@kitware.com> Date: Tue, 30 Nov 2004 18:20:31 -0500 Subject: [PATCH] BUG: Need to include header <new> to use placement new syntax. Really this should be fixed by replacing the stream buffer to set a new string instead of reconstructing the object, but this will require quite a bit of work to do portably. --- kwsys_ios_sstream.h.in | 1 + 1 file changed, 1 insertion(+) diff --git a/kwsys_ios_sstream.h.in b/kwsys_ios_sstream.h.in index 8378cb36..0470ef3d 100644 --- a/kwsys_ios_sstream.h.in +++ b/kwsys_ios_sstream.h.in @@ -50,6 +50,7 @@ // ostringstream and istringstream classes. # include <@KWSYS_NAMESPACE@/stl/string> +# include <new> // Need placement operator new. namespace @KWSYS_NAMESPACE@_ios { -- GitLab