Skip to content

Commit 24ac11b

Browse files
authored
fix for issues/40
#40
1 parent 7c251a1 commit 24ac11b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tutorials/common/Common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ HIPRT_HOST_DEVICE HIPRT_INLINE uint2 tea( uint32_t val0, uint32_t val1 )
129129
v1 += ( ( v0 << 4 ) + 0xad90777d ) ^ ( v0 + s0 ) ^ ( ( v0 >> 5 ) + 0x7e95761e );
130130
}
131131

132-
return make_uint2( v0, v1 );
132+
return { v0, v1 };
133133
}
134134

135135
HIPRT_HOST_DEVICE HIPRT_INLINE float dot4( const float4& a, const float4& b )

0 commit comments

Comments
 (0)