Skip to content

Commit 28d4e2f

Browse files
committed
Fix linting with new clang version
GH CI runners now use clang-format 18.1.8
1 parent 091beaa commit 28d4e2f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

dpctl/tensor/libtensor/include/kernels/accumulators.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ template <typename T> class stack_t
114114
: src_(src), size_(sz), local_scans_(local_scans)
115115
{
116116
}
117-
~stack_t(){};
117+
~stack_t() {};
118118

119119
T *get_src_ptr() const { return src_; }
120120

@@ -140,7 +140,7 @@ template <typename T> class stack_strided_t
140140
local_stride_(local_stride)
141141
{
142142
}
143-
~stack_strided_t(){};
143+
~stack_strided_t() {};
144144

145145
T *get_src_ptr() const { return src_; }
146146

dpctl/tensor/libtensor/include/utils/offset_utils.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ namespace detail
5151

5252
struct sink_t
5353
{
54-
sink_t(){};
54+
sink_t() {};
5555
template <class T> sink_t(T &&){};
5656
};
5757

examples/pybind11/external_usm_allocation/external_usm_allocation/_usm_alloc_example.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ struct DMatrix
4949
: n_(rows), m_(columns), q_(q), alloc_(q), vec_(n_ * m_, alloc_)
5050
{
5151
}
52-
~DMatrix(){};
52+
~DMatrix() {};
5353
DMatrix(const DMatrix &) = default;
5454
DMatrix(DMatrix &&) = default;
5555

0 commit comments

Comments
 (0)