diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2009-01-26 06:10:36 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2009-01-26 06:10:36 +0000 |
commit | 3579de9141b796047bcde9701d756fcc01d4a297 (patch) | |
tree | 0b3727331b09e3e3d03a286068e756df3cd26d49 | |
parent | c20b3a73e2612e4df54c22127298fa1c2786dad0 (diff) |
Fixed nostl mode
git-svn-id: http://pugixml.googlecode.com/svn/trunk@115 99668b35-9821-0410-8761-19e4c4f06640
-rw-r--r-- | src/pugixml.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pugixml.cpp b/src/pugixml.cpp index b6a1dd8..a0f3a58 100644 --- a/src/pugixml.cpp +++ b/src/pugixml.cpp @@ -2647,12 +2647,14 @@ namespace pugi node_output(buffered_writer, *this, indent, flags, depth);
}
+#ifndef PUGIXML_NO_STL
void xml_node::print(std::ostream& stream, const char* indent, unsigned int flags, unsigned int depth)
{
xml_writer_stream writer(stream);
print(writer, indent, flags, depth);
}
+#endif
int xml_node::offset_debug() const
{
|