0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-10 22:18:54 +02:00

ircd::gpt::gpu: Fix keywording for OpenCL 2.0+.

This commit is contained in:
Jason Volk 2022-10-02 01:30:10 +00:00
parent ae9f14bf86
commit 331a417656

View file

@ -27,7 +27,7 @@
#if __OPENCL_VERSION__ < 120
#define static __attribute__((internal_linkage))
#else
#elif __OPENCL_VERSION__ < 200
#define static __constant static
#endif