Skip to content

Commit

Permalink
[MISC] clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
seqan-actions committed Jun 15, 2022
1 parent 7c760e1 commit f64ed67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/utility/views/chunk_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -190,5 +190,5 @@ TYPED_TEST(chunk_view_test, big_chunk)
// Check that a very big number (1ULL<<42) can be stored as chunk_size inside the chunk_view.
// error: conversion from ‘long long unsigned int’ to ‘uint16_t’ {aka ‘short unsigned int’} changes value
// from ‘4398046511104’ to ‘0’ [-Werror=overflow]
[[maybe_unused]] auto v = this->text | seqan3::views::chunk(1ULL<<42);
[[maybe_unused]] auto v = this->text | seqan3::views::chunk(1ULL << 42);
}

0 comments on commit f64ed67

Please sign in to comment.