aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/cl_kernels/arithmetic_op.cl
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/CL/cl_kernels/arithmetic_op.cl')
-rw-r--r--src/core/CL/cl_kernels/arithmetic_op.cl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/CL/cl_kernels/arithmetic_op.cl b/src/core/CL/cl_kernels/arithmetic_op.cl
index 434300efa8..5102d34552 100644
--- a/src/core/CL/cl_kernels/arithmetic_op.cl
+++ b/src/core/CL/cl_kernels/arithmetic_op.cl
@@ -26,10 +26,10 @@
#ifdef SATURATE
#define ADD(x, y) add_sat((x), (y))
#define SUB(x, y) sub_sat((x), (y))
-#else
+#else /* SATURATE */
#define ADD(x, y) (x) + (y)
#define SUB(x, y) (x) - (y)
-#endif
+#endif /* SATURATE */
/** This function add two images.
*