Skip to content

Commit 3b318cb

Browse files
committed
fix unused var
1 parent abae524 commit 3b318cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/beman/inplace_vector/inplace_vector.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ template <typename T> constexpr void test() {
2727
"");
2828
assert(const_bracket == T(42));
2929

30-
auto &&front = range.front();
30+
[[maybe_unused]] auto &&front = range.front();
3131
static_assert(std::is_same<decltype(const_bracket),
3232
typename vec::const_reference>::value,
3333
"");

0 commit comments

Comments
 (0)