Skip to content

Commit

Permalink
Fix 'unused variable' warnings from Clang
Browse files Browse the repository at this point in the history
  • Loading branch information
SSoelvsten committed May 30, 2024
1 parent 693d11b commit 9e79baa
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions test/adiar/internal/algorithms/test_nested_sweeping.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3072,7 +3072,6 @@ go_bandit([]() {
// / \
// T T
*/
const arc::pointer_type terminal_F(false);
const arc::pointer_type terminal_T(true);

const arc::pointer_type n1(0, 0);
Expand Down Expand Up @@ -3141,7 +3140,6 @@ go_bandit([]() {
// || ||
// T T
*/
const arc::pointer_type terminal_F(false);
const arc::pointer_type terminal_T(true);

const arc::pointer_type n1(0, 0);
Expand Down Expand Up @@ -3226,7 +3224,7 @@ go_bandit([]() {
});
});

describe("nested_sweeping:: _ ::sweeps", [&terminal_F, &terminal_T, &outer_dag]() {
describe("nested_sweeping:: _ ::sweeps", [&terminal_F, &terminal_T]() {
describe("inner::down(...)", [&]() {
using inner_down_sweep = test_not_sweep<>;
using inner_roots_t =
Expand Down Expand Up @@ -5689,7 +5687,6 @@ go_bandit([]() {
// / \
// T T
*/
const ptr_uint64 terminal_F(false);
const ptr_uint64 terminal_T(true);

const ptr_uint64 n1(0, 0);
Expand Down

0 comments on commit 9e79baa

Please sign in to comment.