[hip] Fix volatile-qualified member function declartion.

- It should be a volatile-qualified member function instead of returning
  volatile type.

Change-Id: Id7aaa1953d56151b59e469ef22b9f4280f63bebb
This commit is contained in:
Michael LIAO
2020-04-07 12:49:26 -04:00
rodzic f3e31ad00e
commit 35b001b33a
@@ -229,7 +229,7 @@ THE SOFTWARE.
__host__ __device__
operator __half_raw() const { return __half_raw{data}; }
__host__ __device__
operator volatile __half_raw() const volatile
operator __half_raw() const volatile
{
return __half_raw{data};
}