Skip to content
Snippets Groups Projects
Commit f8114e05 authored by Honza's avatar Honza
Browse files

minor: unused variable warning

silence the compiler
parent 12fa8c7e
No related branches found
No related tags found
No related merge requests found
......@@ -65,6 +65,8 @@ void SaxInterface::characters(void * userData, const xmlChar * ch, int len) {
}
 
void SaxInterface::startElement(void* userData, const xmlChar* name, const xmlChar** attrs) {
(void)attrs;
list<Token> &out = *((list<Token>*) userData);
out.push_back(Token((char*) name, Token::START_ELEMENT));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment