summaryrefslogtreecommitdiffhomepage
path: root/examples/hash_crc32_example/example.cc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-09 02:33:57 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-09 02:33:57 +0100
commitd00417533e197bc33faa4a14602e098a94f5a955 (patch)
tree5c13849af857197ae6be936942a22d237db5d2b6 /examples/hash_crc32_example/example.cc
parent7b7c482846befb1fd7b01e2edc372e0faf45f825 (diff)
chore: codebase cleanup.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'examples/hash_crc32_example/example.cc')
-rw-r--r--examples/hash_crc32_example/example.cc14
1 files changed, 0 insertions, 14 deletions
diff --git a/examples/hash_crc32_example/example.cc b/examples/hash_crc32_example/example.cc
deleted file mode 100644
index bd27662..0000000
--- a/examples/hash_crc32_example/example.cc
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <ocl/crc_hash.hpp>
-#include <ocl/print.hpp>
-
-int main(int argc, char** argv)
-{
- if (argc != 2) return 1;
-
- std::hash<ocl::crc_hash_trait> hash{};
-
- ocl::io::enable_stdio_sync(false);
- ocl::io::print(hash(argv[1]));
-
- return 0;
-}