[Clang] -Wunused-but-set-variable warning - handle also pre/post unary operators
Clang fails to diagnose: ``` void test() { int j = 0; for (int i = 0; i < 1000; i++) j++; return; } ``` Reason: Missing support for UnaryOperator. We should not warn with volatile variables... so add check for it. Reviewed By: efriedma Differential Revision: https://reviews.llvm.org/D122271
Loading
Please sign in to comment