summaryrefslogtreecommitdiffhomepage
path: root/examples/hash_crc32_example/example.cc
diff options
context:
space:
mode:
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;
-}