diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-05-03 09:21:23 -0700 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-05-03 09:21:23 -0700 |
commit | b1965061afffaa7c7290dfdfc53b5bbf19d73c01 (patch) | |
tree | 471550ea2603e1ce8e5cb940613cd4165b423f7f | |
parent | f67e7619704ff362e5e93b3b205572457b5a2376 (diff) |
Fix MSVC warning
-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 1e49b8f..7b19c2a 100644 --- a/src/pugixml.cpp +++ b/src/pugixml.cpp @@ -1129,7 +1129,7 @@ PUGI__NS_BEGIN // insert new marker uint32_t* marker = static_cast<uint32_t*>(result); - *marker = reinterpret_cast<char*>(marker) - reinterpret_cast<char*>(out_page); + *marker = static_cast<uint32_t>(reinterpret_cast<char*>(marker) - reinterpret_cast<char*>(out_page)); out_page->compact_page_marker = marker; // since we don't reuse the page space until we reallocate it, we can just pretend that we freed the marker block |