Mark some variables as unused

These triggered warnings.
This commit is contained in:
Fabian Homborg
2019-05-29 20:39:09 +02:00
parent 39099ceb10
commit 1259b32ecc
2 changed files with 2 additions and 0 deletions

View File

@@ -150,6 +150,7 @@ namespace {
/// Test if the given string contains error. Since this is the error detection for general purpose,
/// there are no invalid strings, so this function always returns false.
parser_test_error_bits_t default_test(parser_t &parser, const wcstring &b) {
UNUSED(parser);
UNUSED(b);
return 0;
}