From 66a6e703f217e9ad8b0c128d720408dc134f1f47 Mon Sep 17 00:00:00 2001
From: foreman
Date: Mon, 9 Sep 2019 14:50:37 -0400
Subject: [PATCH] P4 to Git Change 1995672 by skudchad@skudchad_rocm on
2019/09/09 14:45:42
SWDEV-199293 - Fix build
Affected files ...
... //depot/stg/opencl/drivers/opencl/api/hip/hip_rtc.cpp#4 edit
---
api/hip/hip_rtc.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/api/hip/hip_rtc.cpp b/api/hip/hip_rtc.cpp
index 9928dcdfd2..8446b5112b 100644
--- a/api/hip/hip_rtc.cpp
+++ b/api/hip/hip_rtc.cpp
@@ -208,7 +208,7 @@ hiprtcResult hiprtcGetLoweredName(hiprtcProgram p, const char* n, const char** l
}
const auto it{ std::find_if(p->names.cbegin(), p->names.cend(),
- [=](const pair& x)
+ [=](const std::pair& x)
{ return x.first == n; })};
if (it == p->names.cend()) {