This expression gets marked by the compiler with Warning: variable ‘_’ not left unused.
Clearly the variable is left unused in the query, but it gets bound in the macro.
Is there a declaration or something that would teach the compiler what "unused" means in this context? Barring that, is there a declaration or something to disable the warning in this context?
This expression gets marked by the compiler with
Warning: variable ‘_’ not left unused
.Clearly the variable is left unused in the query, but it gets bound in the macro.
Is there a declaration or something that would teach the compiler what "unused" means in this context? Barring that, is there a declaration or something to disable the warning in this context?