Skip to content

Commit 3dc4545

Browse files
committed
fix bug
1 parent c9c4914 commit 3dc4545

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

multi_physics/QED/QED_tests/test_picsar_span.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ BOOST_AUTO_TEST_CASE( picsar_span_range_based_loops )
4747
{
4848
auto arr = std::array<int,3>();
4949
int i = 0;
50-
for(auto& el : arr){ el = ++i };
50+
for(auto& el : arr){ el = ++i; }
5151
const auto span = picsar_span<const int>{arr.size(), arr.data()};
5252
int sum = 0;
5353
for(const auto& el : span){ sum += el; }

0 commit comments

Comments
 (0)