Skip to content

Commit 9c12d21

Browse files
committed
GPU: Fix compiler warning
1 parent 2c07a3d commit 9c12d21

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Common/MathUtils/include/MathUtils/SMatrixGPU.h

Lines changed: 1 addition & 1 deletion
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() = default;
441+
GPUdDefault() ~Expr() = default;
442442
GPUdi() T apply(unsigned int i) const
443443
{
444444
return mRhs.apply(i);

0 commit comments

Comments
 (0)