Skip to content

Commit ee80a90

Browse files
committed
attempt to fix a performance-unnecessary-copy-initialization issue
1 parent 1c27c38 commit ee80a90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

multi_physics/QED/QED_tests/test_picsar_tables.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ BOOST_AUTO_TEST_CASE( picsar_equispaced_2d_table_constructor_getters)
629629
{
630630
auto tab_2d = make_2d_table();
631631
const auto const_tab_2d = make_2d_table();
632-
auto copy_tab_2d = tab_2d;
632+
const auto copy_tab_2d = tab_2d;
633633

634634
check_table_2d(tab_2d);
635635
check_table_2d(const_tab_2d);

0 commit comments

Comments
 (0)