From: <vac...@us...> - 2008-11-16 01:40:19
|
Revision: 89 http://xmlwrapp.svn.sourceforge.net/xmlwrapp/?rev=89&view=rev Author: vaclavslavik Date: 2008-11-16 01:40:16 +0000 (Sun, 16 Nov 2008) Log Message: ----------- fix ISO C++ compilation -- include missing C++ standard headers (patch by Greg Chicares) Modified Paths: -------------- trunk/AUTHORS trunk/include/xmlwrapp/event_parser.h trunk/src/libxml/node.cxx Modified: trunk/AUTHORS =================================================================== --- trunk/AUTHORS 2008-11-16 01:32:26 UTC (rev 88) +++ trunk/AUTHORS 2008-11-16 01:40:16 UTC (rev 89) @@ -8,3 +8,4 @@ Patches: Tiziano Mueller <ti...@us...> + Greg Chicares <gch...@sb...> Modified: trunk/include/xmlwrapp/event_parser.h =================================================================== --- trunk/include/xmlwrapp/event_parser.h 2008-11-16 01:32:26 UTC (rev 88) +++ trunk/include/xmlwrapp/event_parser.h 2008-11-16 01:40:16 UTC (rev 89) @@ -38,6 +38,7 @@ #define _xmlwrapp_event_parser_h_ // standard includes +#include <cstddef> #include <string> #include <iosfwd> #include <map> Modified: trunk/src/libxml/node.cxx =================================================================== --- trunk/src/libxml/node.cxx 2008-11-16 01:32:26 UTC (rev 88) +++ trunk/src/libxml/node.cxx 2008-11-16 01:40:16 UTC (rev 89) @@ -42,6 +42,7 @@ #include "node_manip.h" // standard includes +#include <cstring> #include <new> #include <memory> #include <string> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |