Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed coverity issue in acl_context.cpp: Type: AUTO_CAUSES_COPY (AUTO…
…_CAUSES_COPY) Changed to `const cl_context _context` since coverity complains about the previous code auto _context would make an auto copy of the pointer contexts in acl_platform.contexts_set. Because `_context` is a pointer, a copy is equally as cheap as a reference, and to pass coverity which only mentions `auto` copy.
- Loading branch information