Rename Version major and minor getters (#2451)

Both these functions cause a conflict when using an old version of the
GNU C Library with the header file sys/sysmacros.h where major() and
minor() are defined as a macro
This commit is contained in:
Jose Lopez
2025-08-26 17:35:48 +01:00
committed by GitHub
parent c0f5c4e271
commit b0245f1a28
2 changed files with 3 additions and 3 deletions

View File

@@ -248,7 +248,7 @@ clMemWrapper create_image(cl_context context, cl_command_queue queue,
cl_mem_flags buffer_flags = CL_MEM_READ_WRITE;
if (enable_pitch)
{
if (version.major() == 1)
if (version.get_major() == 1)
{
host_ptr = malloc(imageInfo->rowPitch);
}