Skip to content

Commit a5da8c4

Browse files
mconcasdavidrohr
authored andcommitted
[GPU] Fix codechecker violation
1 parent e3f71a6 commit a5da8c4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Common/MathUtils/include/MathUtils/SMatrixGPU.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ class Expr
438438
public:
439439
typedef T value_type;
440440
GPUd() Expr(const ExprType& rhs) : mRhs(rhs) {} // NOLINT: False positive
441-
GPUd() ~Expr() {}
441+
GPUd() ~Expr() = default;
442442
GPUdi() T apply(unsigned int i) const
443443
{
444444
return mRhs.apply(i);
@@ -1472,4 +1472,4 @@ GPUdi() SMatrixGPU<T, D1, D1, MatRepSymGPU<T, D1>> Similarity(const SMatrixGPU<T
14721472
return mret;
14731473
}
14741474
}; // namespace o2::math_utils
1475-
#endif
1475+
#endif

0 commit comments

Comments
 (0)