0
0
mirror of https://github.com/zeux/pugixml.git synced 2025-01-13 17:37:58 +08:00

Now should compile on gcc without errors/warnings

git-svn-id: http://pugixml.googlecode.com/svn/trunk@20 99668b35-9821-0410-8761-19e4c4f06640
This commit is contained in:
arseny.kapoulkine 2006-12-11 14:00:37 +00:00
parent 9db5197f82
commit 79769db47c
2 changed files with 7 additions and 3 deletions

View File

@ -13,7 +13,6 @@
#include "pugixml.hpp"
#include <cstring>
#include <cstdlib>
#include <new>
@ -174,7 +173,9 @@ namespace pugi
for (; *s; ++s)
{
if (*s < 0x80 || (*s >= 0xC0 && *s < 0xFC)) ++length;
unsigned char ch = static_cast<unsigned char>(*s);
if (ch < 0x80 || (ch >= 0xC0 && ch < 0xFC)) ++length;
}
return length;
@ -1066,7 +1067,7 @@ namespace pugi
{
}
xml_node_struct::xml_node_struct(xml_node_type type): name(0), value(0), prev_sibling(0), next_sibling(0), first_child(0), last_child(0), first_attribute(0), last_attribute(0), type(type)
xml_node_struct::xml_node_struct(xml_node_type type): type(type), parent(0), name(0), value(0), first_child(0), last_child(0), prev_sibling(0), next_sibling(0), first_attribute(0), last_attribute(0)
{
}

View File

@ -22,6 +22,9 @@
# include <istream>
#endif
#include <cstddef>
#include <cstring>
/// The PugiXML Parser namespace.
namespace pugi
{