From d31206acb8f3077dabdccaf53bd5820d997bc030 Mon Sep 17 00:00:00 2001 From: Aditya Atluri Date: Thu, 29 Sep 2016 10:06:26 -0500 Subject: [PATCH] Fixed issue on git #39 Change-Id: I5b507fc2b544df0cd3a900a2763c7a3ad6295c13 [ROCm/hip commit: 1e56dead78e725fed3c22d97e6b3d0bee3a8b322] --- projects/hip/include/hcc_detail/hip_runtime_api.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/hip/include/hcc_detail/hip_runtime_api.h b/projects/hip/include/hcc_detail/hip_runtime_api.h index 6992be8475..ee4ff2fd2b 100644 --- a/projects/hip/include/hcc_detail/hip_runtime_api.h +++ b/projects/hip/include/hcc_detail/hip_runtime_api.h @@ -1083,7 +1083,7 @@ hipError_t hipMemset(void* dst, int value, size_t sizeBytes ); * @return #hipSuccess, #hipErrorInvalidValue, #hipErrorMemoryFree */ #if __cplusplus -hipError_t hipMemsetAsync(void* dst, int value, size_t sizeBytes, hipStream_t = 0 ); +hipError_t hipMemsetAsync(void* dst, int value, size_t sizeBytes, hipStream_t stream = 0 ); #else hipError_t hipMemsetAsync(void* dst, int value, size_t sizeBytes, hipStream_t stream); #endif