Skip to content

Commit 17be9c2

Browse files
committed
Fix ordering
1 parent 7fe2e8f commit 17be9c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/benchmarks.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,8 +378,8 @@ int main()
378378

379379
std::cout << "\n===== Subtraction =====\n";
380380

381-
test_two_element_operation(double_vector, std::minus<>(), "Subtraction", "double");
382381
test_two_element_operation(float_vector, std::minus<>(), "Subtraction", "float");
382+
test_two_element_operation(double_vector, std::minus<>(), "Subtraction", "double");
383383
test_two_element_operation(dec32_vector, std::minus<>(), "Subtraction", "decimal32");
384384
test_two_element_operation(dec64_vector, std::minus<>(), "Subtraction", "decimal64");
385385
test_two_element_operation(dec128_vector, std::minus<>(), "Subtraction", "decimal128");

0 commit comments

Comments
 (0)