Skip to content

Commit 3d288bd

Browse files
mconcasdavidrohr
authored andcommitted
Fix HIP-specific issues
1 parent d4e7a8e commit 3d288bd

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

  • DataFormats
    • Reconstruction/include/ReconstructionDataFormats
    • common/include/CommonDataFormat

DataFormats/Reconstruction/include/ReconstructionDataFormats/Vertex.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class VertexBase
4141
kCovZZ };
4242
static constexpr int kNCov = 6;
4343
GPUhd() VertexBase() = default;
44-
GPUdDefault() ~VertexBase() = default;
44+
GPUhd() ~VertexBase() = default;
4545
GPUd() VertexBase(const math_utils::Point3D<float>& pos, const gpu::gpustd::array<float, kNCov>& cov) : mPos(pos), mCov(cov)
4646
{
4747
}
@@ -120,7 +120,7 @@ class Vertex : public VertexBase
120120
};
121121

122122
GPUhd() Vertex() = default;
123-
GPUdDefault() ~Vertex() = default;
123+
GPUhd() ~Vertex() = default;
124124
GPUd() Vertex(const math_utils::Point3D<float>& pos, const gpu::gpustd::array<float, kNCov>& cov, ushort nCont, float chi2)
125125
: VertexBase(pos, cov), mNContributors(nCont), mChi2(chi2)
126126
{

DataFormats/common/include/CommonDataFormat/TimeStamp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class TimeStamp
2626
{
2727
public:
2828
GPUhd() TimeStamp() CON_DEFAULT;
29-
GPUdDefault() ~TimeStamp() CON_DEFAULT;
29+
GPUhd() ~TimeStamp() CON_DEFAULT;
3030
GPUdi() TimeStamp(T time) { mTimeStamp = time; }
3131
GPUdi() T getTimeStamp() const { return mTimeStamp; }
3232
GPUdi() void setTimeStamp(T t) { mTimeStamp = t; }

0 commit comments

Comments
 (0)