Fix compile error in UnresolvedSetTest.cpp, again
authorJohn Brawn <john.brawn@arm.com>
Wed, 5 Jul 2023 16:53:12 +0000 (17:53 +0100)
committerJohn Brawn <john.brawn@arm.com>
Wed, 5 Jul 2023 16:54:50 +0000 (17:54 +0100)
commit25784cd6a962ac59e7bde07761fc3ba450da6628
tree3c4d2a872ba1d07cbe7d62762ae3cf11932949bc
parent9992b386bf3c4972494c5e4f571dff24db59a383
Fix compile error in UnresolvedSetTest.cpp, again

My previous fix used a gcc-style attribute, but not all compilers will accept
that. Instead use [[maybe_unused]], which is what we use elsewhere for this
kind of thing.
clang/unittests/AST/UnresolvedSetTest.cpp