replace ArrayRange by tcb::span (reproduction of std::span)
This commit is contained in:
@@ -122,7 +122,7 @@ class XMLSAXImporter
|
||||
}
|
||||
static void characters( void *user_data, const xmlChar *ch, int len ){
|
||||
reinterpret_cast<XMLSAXImporter*>( user_data )->m_importer
|
||||
<< StringRange( reinterpret_cast<const char*>( ch ), reinterpret_cast<const char*>( ch + len ) );
|
||||
<< StringRange( reinterpret_cast<const char*>( ch ), len );
|
||||
}
|
||||
|
||||
static void warning( void *user_data, const char *msg, ... ){
|
||||
|
||||
Reference in New Issue
Block a user