From 15ed36c8211c2a97bfeaebd57a108bb325c9bac3 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Sat, 21 Feb 2026 09:19:35 +0000 Subject: [PATCH] Fix 'unused variable' error in index_sequence tests --- test/test_utility.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_utility.cpp b/test/test_utility.cpp index f966f7f2..47500503 100644 --- a/test/test_utility.cpp +++ b/test/test_utility.cpp @@ -1002,7 +1002,7 @@ namespace //********************************* TEST(test_index_sequence_at_matches_expected) { - using seq0 = etl::index_sequence<>; + // using seq0 = etl::index_sequence<>; // This should fail to compile as seq0 is empty using seq1 = etl::index_sequence<1U, 2U, 3U>; //using result0 = etl::index_sequence_at; // This should fail to compile as seq0 is empty //auto ignore0 = result0; // Uses result0