mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-25 00:09:02 +00:00
[NFC] Do not use reserved names for include guards (#1737)
Names that begin with an underscore followed by an uppercase letter are reserved for the C++ implementation. Signed-off-by: Sven van Haastregt <sven.vanhaastregt@arm.com>
This commit is contained in:
committed by
GitHub
parent
c8061ab21a
commit
475a37abbf
@@ -13,8 +13,8 @@
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
//
|
||||
#ifndef _CL_KHR_EXTERNAL_SEMAPHORE_PROCS_H
|
||||
#define _CL_KHR_EXTERNAL_SEMAPHORE_PROCS_H
|
||||
#ifndef CL_KHR_EXTERNAL_SEMAPHORE_PROCS_H
|
||||
#define CL_KHR_EXTERNAL_SEMAPHORE_PROCS_H
|
||||
|
||||
#include <CL/cl.h>
|
||||
|
||||
@@ -79,4 +79,4 @@ extern int test_external_semaphores_invalid_command(cl_device_id deviceID,
|
||||
cl_context context,
|
||||
cl_command_queue queue,
|
||||
int num_elements);
|
||||
#endif /* CL_KHR_EXTERNAL_SEMAPHORE */
|
||||
#endif // CL_KHR_EXTERNAL_SEMAPHORE_PROCS_H
|
||||
|
||||
Reference in New Issue
Block a user