Revision: 167
http://xmlwrapp.svn.sourceforge.net/xmlwrapp/?rev=167&view=rev
Author: vaclavslavik
Date: 2010-02-11 23:12:20 +0000 (Thu, 11 Feb 2010)
Log Message:
-----------
Compilation fix for SunCC with STLport.
std::runtime_error() ctor takes std::string argument, so we have to
include <string> here even though std::string isn't explicitly used.
Modified Paths:
--------------
trunk/src/libxml/node_manip.cxx
Modified: trunk/src/libxml/node_manip.cxx
===================================================================
--- trunk/src/libxml/node_manip.cxx 2009-12-29 13:45:21 UTC (rev 166)
+++ trunk/src/libxml/node_manip.cxx 2010-02-11 23:12:20 UTC (rev 167)
@@ -35,6 +35,7 @@
// standard includes
#include <stdexcept>
+#include <string>
// libxml includes
#include <libxml/tree.h>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|