mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-17 18:12:04 +01:00
s/int/size_t/
This commit is contained in:
parent
92a1bf27b9
commit
96ae40e974
1 changed files with 1 additions and 1 deletions
|
@ -707,7 +707,7 @@ void expat_wrapper<stringT, string_adaptorT>::endElement(const char* qName)
|
|||
typename namespaceSupportT::Parts name = processName(SA_.makeStringT(qName), false);
|
||||
contentHandler_->endElement(name.URI, name.localName, name.rawName);
|
||||
typename namespaceSupportT::stringListT prefixes = nsSupport_.getDeclaredPrefixes();
|
||||
for(int i = 1, end = prefixes.size(); i < end; ++i)
|
||||
for(size_t i = 1, end = prefixes.size(); i < end; ++i)
|
||||
contentHandler_->endPrefixMapping(prefixes[i]);
|
||||
nsSupport_.popContext();
|
||||
} // endElement
|
||||
|
|
Loading…
Reference in a new issue