summaryrefslogtreecommitdiffhomepage
path: root/examples/equiv
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-29 14:53:01 -0500
committerAmlal El Mahrouss <amlal@nekernel.org>2025-11-29 14:54:13 -0500
commita8e99f3a783069cf85b626c6cfb2fbe83ae4fd44 (patch)
tree8322b0d20dd02660c3f26fcfd37c2cc4dcd33cda /examples/equiv
parent463a0c01f96d86c9c91f02903bc1d194c5e55b15 (diff)
chore: new version of OCL and codebase cleanup.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'examples/equiv')
-rw-r--r--examples/equiv/CMakeLists.txt12
-rw-r--r--examples/equiv/equiv.cc19
2 files changed, 0 insertions, 31 deletions
diff --git a/examples/equiv/CMakeLists.txt b/examples/equiv/CMakeLists.txt
deleted file mode 100644
index 4a374ce..0000000
--- a/examples/equiv/CMakeLists.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-
-cmake_minimum_required(VERSION 3.15...3.31)
-
-project(
- Equiv
- VERSION 1.0
- LANGUAGES CXX)
-
-add_executable(Equiv equiv.cc)
-
-set_property(TARGET Equiv PROPERTY CXX_STANDARD 20)
-target_include_directories(Equiv PUBLIC ../../include/ocl)
diff --git a/examples/equiv/equiv.cc b/examples/equiv/equiv.cc
deleted file mode 100644
index 0c68e21..0000000
--- a/examples/equiv/equiv.cc
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- string checksum example
- written by Amlal El Mahrouss.
- licensed under the Boost Software License
- */
-
-#include <logic/equiv.hpp>
-#include <iostream>
-
-/* finally test it */
-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;
-
- return 0;
-}