Fix compile error in UnresolvedSetTest.cpp with -Wall
authorJohn Brawn <john.brawn@arm.com>
Wed, 5 Jul 2023 16:39:59 +0000 (17:39 +0100)
committerJohn Brawn <john.brawn@arm.com>
Wed, 5 Jul 2023 16:39:59 +0000 (17:39 +0100)
commit258322105892bd895a89ccbe89487885581f5a47
tree13c19388b5fbc4f662c827833a2e5d558bae321b
parent60be17a68521642ed2a5d59097065b86113808ef
Fix compile error in UnresolvedSetTest.cpp with -Wall

A stage 2 buildbot that compiles with -Wall -Werror is showing a failure because
a dummy value is unused. Use the unused attribute to suppress the warning, and
add a comment about why we have this value.
clang/unittests/AST/UnresolvedSetTest.cpp