[clang][bytecode] Silence unused variable warning

This commit is contained in:
Alexandre Ganea 2025-08-20 14:09:24 -04:00
parent 15babbaf5d
commit 410a1341b5

View File

@ -403,6 +403,7 @@ TEST(Descriptor, Primitives) {
ASSERT_FALSE(PF5.isElementPastEnd());
const Pointer &E1 = PF5.atIndex(0);
(void)E1;
ASSERT_TRUE(PF5.isOnePastEnd());
ASSERT_FALSE(PF5.isElementPastEnd());
}