fix unsigned signed conversion warning

This commit is contained in:
Thomas Fussell 2016-03-07 13:42:33 +08:00
parent d11a545d3f
commit b56722ed65

View File

@ -50,7 +50,7 @@ bool shared_strings_serializer::read_shared_strings(const xml_document &xml, std
strings.clear();
auto root_node = xml.get_child("sst");
auto unique_count = 0;
std::size_t unique_count = 0;
if (root_node.has_attribute("uniqueCount"))
{