Skip to content

Commit

Permalink
Fix self-assign build error (#287)
Browse files Browse the repository at this point in the history
  • Loading branch information
lakshmih authored Feb 16, 2024
1 parent 83cc072 commit b47ba49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/CL/opencl.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright (c) 2008-2023 The Khronos Group Inc.
// Copyright (c) 2008-2024 The Khronos Group Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -3204,10 +3204,10 @@ class Context
#if defined(cl_ext_image_requirements_info)
struct ImageRequirementsInfo {

ImageRequirementsInfo(cl_mem_flags f, const cl_mem_properties* properties, const ImageFormat* format, const cl_image_desc* desc)
ImageRequirementsInfo(cl_mem_flags f, const cl_mem_properties* mem_properties, const ImageFormat* format, const cl_image_desc* desc)
{
flags = f;
properties = properties;
properties = mem_properties;
image_format = format;
image_desc = desc;
}
Expand Down

0 comments on commit b47ba49

Please sign in to comment.