summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-19 19:10:54 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-19 19:10:54 +0100
commit6471853426716df7f5b804649d0cf74df340dfe5 (patch)
tree93141c97007d38794f949f5dbf8b0987a15a2d9a
parent342e5b1b5aa555d7a910e2fdc150c6fe0823e065 (diff)
hotpatch: Wrong preprocessor macro cond.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
-rw-r--r--include/ocl/is_same.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/ocl/is_same.hpp b/include/ocl/is_same.hpp
index 4ed0dc7..4051afe 100644
--- a/include/ocl/is_same.hpp
+++ b/include/ocl/is_same.hpp
@@ -1,10 +1,9 @@
#pragma once
-#if __cplusplus <= 202301L
+#if __cplusplus < 202301L
#error "This header has been deprecated, it now redirects to equiv.hpp"
#else
#warning "This header has been deprecated, it now redirects to equiv.hpp"
#endif
#include <ocl/equiv.hpp>
-