Fixed MSVC x64 warning

git-svn-id: http://pugixml.googlecode.com/svn/trunk@522 99668b35-9821-0410-8761-19e4c4f06640
This commit is contained in:
arseny.kapoulkine 2010-06-13 20:41:12 +00:00
parent 2b29b15573
commit 30fbb3e328

View File

@ -1804,8 +1804,8 @@ namespace
struct xml_parser
{
xml_allocator alloc;
char_t* error_offset;
jmp_buf error_handler;
char_t* error_offset;
// Parser utilities.
#define SKIPWS() { while (IS_CHARTYPE(*s, ct_space)) ++s; }