summaryrefslogtreecommitdiffhomepage
path: root/dev/examples/equiv
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-10-14 04:35:26 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-10-14 04:35:26 +0200
commita786997f304745ce3766a82be06dc6a5d0c2f02c (patch)
treedb923caaec3762fbb68290fd1ae94cb1465378e7 /dev/examples/equiv
parentfa4748e414e9494442f9bcde9c659d3951af19c0 (diff)
feat: scl: major refactors and new version of SCL.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/examples/equiv')
-rw-r--r--dev/examples/equiv/equiv.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/examples/equiv/equiv.cc b/dev/examples/equiv/equiv.cc
index 12207f4..9d41afb 100644
--- a/dev/examples/equiv/equiv.cc
+++ b/dev/examples/equiv/equiv.cc
@@ -11,9 +11,9 @@
int main(int argc, char** argv)
{
std::cout << std::boolalpha;
- std::cout << ocl::equiv::is_same<bool, int>::value << std::endl;
- std::cout << ocl::equiv::is_same<bool, bool>::value << std::endl;
- std::cout << ocl::equiv::is_same<int, int>::value << std::endl;
+ std::cout << scl::equiv::is_same<bool, int>::value << std::endl;
+ std::cout << scl::equiv::is_same<bool, bool>::value << std::endl;
+ std::cout << scl::equiv::is_same<int, int>::value << std::endl;
return 0;
}