We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce427f7 commit aa60f5eCopy full SHA for aa60f5e
GPU/GPUTracking/Base/opencl-common/GPUReconstructionOCL.cl
@@ -58,14 +58,14 @@
58
#define nullptr NULL
59
#define NULL (0x0)
60
#endif
61
-#define uint64_t unsigned long
62
-#define uint32_t unsigned int
63
-#define uint16_t unsigned short
64
-#define uint8_t unsigned char
65
-#define int64_t long
66
-#define int32_t int
67
-#define int16_t short
68
-#define int8_t signed char
+typedef unsigned long uint64_t;
+typedef unsigned int uint32_t;
+typedef unsigned short uint16_t;
+typedef unsigned char uint8_t;
+typedef signed long int64_t;
+typedef signed int int32_t;
+typedef signed short int16_t;
+typedef signed char int8_t;
69
70
// Disable assertions since they produce errors in GPU Code
71
#ifdef assert
0 commit comments