I have clang-tidy checking for unused return values with bugprone-unused-return-value
check. Unfortunately it only checks return values from list of functions specified with CheckedFunctions
parameter. I would like to check usage of return value from all functions, but am not able to figure out what to write to CheckedFunctions
to do this.
What should I write to bugprone-unused-return-value
's parameter CheckedFunctions
for it to check all functions?