summaryrefslogtreecommitdiffhomepage
path: root/dev/examples/equiv
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-24 02:13:48 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-11-24 02:13:48 +0100
commit65a8349aa5526d071b18cd4d42586c46faaa3823 (patch)
treef6e2063319ceaaa02f523fb5c289e4f37411a2df /dev/examples/equiv
parentdf4ec096491ded6d58b9ee094d6942e3188c2d4a (diff)
feat! breaking changes for OCL v1.0.48.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/examples/equiv')
-rw-r--r--dev/examples/equiv/CMakeLists.txt12
-rw-r--r--dev/examples/equiv/equiv.cc19
2 files changed, 0 insertions, 31 deletions
diff --git a/dev/examples/equiv/CMakeLists.txt b/dev/examples/equiv/CMakeLists.txt
deleted file mode 100644
index 8b29e23..0000000
--- a/dev/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 ../../)
diff --git a/dev/examples/equiv/equiv.cc b/dev/examples/equiv/equiv.cc
deleted file mode 100644
index 41128a2..0000000
--- a/dev/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 <lib/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;
-}