diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-10-14 04:35:26 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-10-14 04:35:26 +0200 |
| commit | a786997f304745ce3766a82be06dc6a5d0c2f02c (patch) | |
| tree | db923caaec3762fbb68290fd1ae94cb1465378e7 /dev/examples/equiv | |
| parent | fa4748e414e9494442f9bcde9c659d3951af19c0 (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.cc | 6 |
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; } |
