Skip to content

Commit fd9ebf4

Browse files
committed
Tidy a comment
1 parent 05b0748 commit fd9ebf4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sycl/include/syclcompat/math.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -843,10 +843,10 @@ inline typename std::enable_if_t<std::is_floating_point_v<ValueT>, ValueT>
843843
pow(const ValueT a, const ValueU b) {
844844
return sycl::pow(a, static_cast<ValueT>(b));
845845
}
846-
847-
// TODO: calling pow with non-floating point values is currently defaulting to
848-
// double, which fails on devices without aspect::fp64. This has to be properly
849-
// documented, and maybe changed to support all devices.
846+
// TODO(syclcompat-lib-reviewers) calling pow with non-floating point values
847+
// is currently defaulting to double, which fails on devices without
848+
// aspect::fp64. This has to be properly documented, and maybe changed to
849+
// support all devices.
850850
template <typename ValueT, typename ValueU>
851851
inline typename std::enable_if_t<!std::is_floating_point_v<ValueT>, double>
852852
pow(const ValueT a, const ValueU b) {

0 commit comments

Comments
 (0)