We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f66642 commit dc11decCopy full SHA for dc11dec
2 files changed
cpp/src/arrow/compute/kernels/hash_aggregate.cc
@@ -284,7 +284,8 @@ template <typename T>
284
concept CFloatingPointConcept = std::floating_point<T> || std::same_as<T, util::Float16>;
285
#else
286
template <typename T>
287
-concept CFloatingPointConcept = std::is_floating_point_v<T> || std::same_as<T, util::Float16>;
+concept CFloatingPointConcept =
288
+ std::is_floating_point_v<T> || std::same_as<T, util::Float16>;
289
#endif
290
291
dev/tasks/r/github.macos.cran.yml
@@ -97,6 +97,6 @@ jobs:
97
- name: Save the test output
98
uses: actions/upload-artifact@v4
99
with:
100
- name: test-output
+ name: test-output-{{ '${{ matrix.config }}' }}
101
path: arrow-tests/testthat.Rout*
102
if: always()
0 commit comments