Skip to content

Commit

Permalink
Bugfix in adjacent_difference.pass
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Michel <matthew.michel@intel.com>
  • Loading branch information
mmichel11 committed Feb 11, 2025
1 parent c543935 commit 732e3a2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ void
test(Pred pred)
{
const auto test_sizes = TestUtils::get_pattern_for_test_sizes();
const std::size_t max_len = test_sizes.size();
const std::size_t max_len = test_sizes.back();

const T2 value = T2(77);
const T1 trash = T1(31);
Expand Down

0 comments on commit 732e3a2

Please sign in to comment.