kenba / opencl3

A Rust implementation of the Khronos OpenCL 3.0 API.
Apache License 2.0
102 stars 13 forks source link

Restore `c_void` to program.rs #20

Closed jleflang closed 3 years ago

jleflang commented 3 years ago

There is a compilation error due to c_void not being in-scope in program.rs when the CL_VERSION_2_2 feature is enabled. It was removed after #12 was resolved.

kenba commented 3 years ago

Sorry about that James. I've just updated it in the develop branch. Please can you confirm that the fix works for you?

jleflang commented 3 years ago

That fixes this issue. Thank you!