mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-30 08:38:15 +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);
|
typename namespaceSupportT::Parts name = processName(SA_.makeStringT(qName), false);
|
||||||
contentHandler_->endElement(name.URI, name.localName, name.rawName);
|
contentHandler_->endElement(name.URI, name.localName, name.rawName);
|
||||||
typename namespaceSupportT::stringListT prefixes = nsSupport_.getDeclaredPrefixes();
|
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]);
|
contentHandler_->endPrefixMapping(prefixes[i]);
|
||||||
nsSupport_.popContext();
|
nsSupport_.popContext();
|
||||||
} // endElement
|
} // endElement
|
||||||
|
|
Loading…
Add table
Reference in a new issue