summaryrefslogtreecommitdiffhomepage
path: root/dev/examples/equiv
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-10-14 04:38:06 +0200
committerGitHub <noreply@github.com>2025-10-14 04:38:06 +0200
commit8939837390193e86c52299048caec9c7722178e6 (patch)
treedb923caaec3762fbb68290fd1ae94cb1465378e7 /dev/examples/equiv
parent94799223495b9842bca67e1a6ecf611cec3ee771 (diff)
parenta786997f304745ce3766a82be06dc6a5d0c2f02c (diff)
Merge pull request #2 from snu-systems-corp/dev
feat: scl: major refactors and new version of SCL.
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;
}