Skip to content
Snippets Groups Projects
Commit a680911e authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Add missing underscores in device_enqueue_capabilities

parent 5af2d551
No related branches found
No related tags found
1 merge request!124Opencl 3
......@@ -1133,8 +1133,8 @@ void pyopencl_expose_constants(py::module &m)
{
py::class_<device_enqueue_capabilities> cls(m, "device_enqueue_capabilities");
#if (PYOPENCL_CL_VERSION >= 0x3000) && defined(CL_DEVICE_DEVICE_ENQUEUE_CAPABILITIES)
ADD_ATTR(DEVICE_ENQUEUE, SUPPORTED);
ADD_ATTR(DEVICE_ENQUEUE, REPLACEABLE_DEFAULT);
ADD_ATTR(DEVICE_ENQUEUE_, SUPPORTED);
ADD_ATTR(DEVICE_ENQUEUE_, REPLACEABLE_DEFAULT);
#endif
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment