diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-06-13 20:41:12 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-06-13 20:41:12 +0000 |
commit | 30fbb3e32807a856659e8b4d5fa4b5003519a43d (patch) | |
tree | 2a65d3d97844a1400a04ff37d420d0a07ebdf4b6 /src | |
parent | 2b29b15573e0c4d2a76378db3788a481ec2393c8 (diff) |
Fixed MSVC x64 warning
git-svn-id: http://pugixml.googlecode.com/svn/trunk@522 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'src')
-rw-r--r-- | src/pugixml.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pugixml.cpp b/src/pugixml.cpp index b9bbd83..90023ea 100644 --- a/src/pugixml.cpp +++ b/src/pugixml.cpp @@ -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; }
|