summaryrefslogtreecommitdiffhomepage
path: root/example/hash_crc32_example/example.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'example/hash_crc32_example/example.cpp')
-rw-r--r--example/hash_crc32_example/example.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/example/hash_crc32_example/example.cpp b/example/hash_crc32_example/example.cpp
index d2f045e..95a3077 100644
--- a/example/hash_crc32_example/example.cpp
+++ b/example/hash_crc32_example/example.cpp
@@ -9,12 +9,16 @@
int main(int argc, char** argv)
{
- if (argc != 2) return 1;
+ if (argc != 2)
+ {
+ ocl::io::print("Hello, World!\n"_crc32);
+ return EXIT_SUCCESS;
+ }
- std::hash<ocl::crc_hash_trait> hash{};
+ std::hash<ocl::crc_hash_trait> hash{};
- ocl::io::enable_stdio_sync(false);
+ ocl::io::enable_stdio_sync(false);
ocl::io::print(hash.operator()<true, false>(argv[1]));
- return 0;
+ return EXIT_SUCCESS;
}