mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-19 06:09:01 +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
@@ -14,8 +14,8 @@
|
||||
// limitations under the License.
|
||||
//
|
||||
|
||||
#ifndef _TEST_CL_EXT_IMAGE_BUFFER
|
||||
#define _TEST_CL_EXT_IMAGE_BUFFER
|
||||
#ifndef TEST_CL_EXT_IMAGE_BUFFER
|
||||
#define TEST_CL_EXT_IMAGE_BUFFER
|
||||
|
||||
#define TEST_IMAGE_SIZE 20
|
||||
|
||||
@@ -121,4 +121,4 @@ static inline void image_desc_init(cl_image_desc* desc,
|
||||
}
|
||||
}
|
||||
|
||||
#endif /* _TEST_CL_EXT_IMAGE_BUFFER */
|
||||
#endif // TEST_CL_EXT_IMAGE_BUFFER
|
||||
|
||||
Reference in New Issue
Block a user