Skip to content

Commit 1e89e8f

Browse files
Apply suggestions from code review
Co-authored-by: aelovikov-intel <[email protected]>
1 parent 58a17e9 commit 1e89e8f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sycl/source/detail/kernel_program_cache.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ class KernelProgramCache {
113113

114114
struct ProgramBuildResult : public BuildResult<ur_program_handle_t> {
115115
const adapter_impl &MAdapter;
116-
ProgramBuildResult(const adapter_impl &AAdapter) : MAdapter(AAdapter) {
116+
ProgramBuildResult(const adapter_impl &Adapter) : MAdapter(Adapter) {
117117
Val = nullptr;
118118
}
119119
ProgramBuildResult(const adapter_impl &AAdapter, BuildState InitialState)
@@ -199,7 +199,7 @@ class KernelProgramCache {
199199
std::pair<ur_kernel_handle_t, const KernelArgMask *>;
200200
struct KernelBuildResult : public BuildResult<KernelArgMaskPairT> {
201201
const adapter_impl &MAdapter;
202-
KernelBuildResult(const adapter_impl &AAdapter) : MAdapter(AAdapter) {
202+
KernelBuildResult(const adapter_impl &Adapter) : MAdapter(Adapter) {
203203
Val.first = nullptr;
204204
}
205205
~KernelBuildResult() {

0 commit comments

Comments
 (0)