We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c760e1 commit f64ed67Copy full SHA for f64ed67
test/unit/utility/views/chunk_test.cpp
@@ -190,5 +190,5 @@ TYPED_TEST(chunk_view_test, big_chunk)
190
// Check that a very big number (1ULL<<42) can be stored as chunk_size inside the chunk_view.
191
// error: conversion from ‘long long unsigned int’ to ‘uint16_t’ {aka ‘short unsigned int’} changes value
192
// from ‘4398046511104’ to ‘0’ [-Werror=overflow]
193
- [[maybe_unused]] auto v = this->text | seqan3::views::chunk(1ULL<<42);
+ [[maybe_unused]] auto v = this->text | seqan3::views::chunk(1ULL << 42);
194
}
0 commit comments