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.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/example/hash_crc32_example/example.cpp b/example/hash_crc32_example/example.cpp
index 95a3077..345f610 100644
--- a/example/hash_crc32_example/example.cpp
+++ b/example/hash_crc32_example/example.cpp
@@ -9,15 +9,15 @@
int main(int argc, char** argv)
{
- if (argc != 2)
+ 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 EXIT_SUCCESS;