mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 16:40:05 +00:00
Updating most dependencies to latest, holding back libcurl for compatibility with cpr
This commit is contained in:
parent
5c793e07d8
commit
911226c166
7 changed files with 19 additions and 14 deletions
|
|
@ -98,7 +98,8 @@ void DirListSAXHandler::StartElement(void* userData,
|
|||
const xmlChar* name,
|
||||
const xmlChar** attrs)
|
||||
{
|
||||
logger_->trace("SAX: Start Element: {}", name);
|
||||
logger_->trace("SAX: Start Element: {}",
|
||||
reinterpret_cast<const char*>(name));
|
||||
|
||||
DirListSAXData* data = reinterpret_cast<DirListSAXData*>(userData);
|
||||
|
||||
|
|
@ -140,13 +141,14 @@ void DirListSAXHandler::StartElement(void* userData,
|
|||
}
|
||||
for (int i = 0; attrs != nullptr && attrs[i] != nullptr; ++i)
|
||||
{
|
||||
logger_->trace(" Attribute: {}", attrs[i]);
|
||||
logger_->trace(" Attribute: {}",
|
||||
reinterpret_cast<const char*>(attrs[i]));
|
||||
}
|
||||
}
|
||||
|
||||
void DirListSAXHandler::EndElement(void* userData, const xmlChar* name)
|
||||
{
|
||||
logger_->trace("SAX: End Element: {}", name);
|
||||
logger_->trace("SAX: End Element: {}", reinterpret_cast<const char*>(name));
|
||||
|
||||
DirListSAXData* data = reinterpret_cast<DirListSAXData*>(userData);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue