diff options
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/fix_tag_example/example.cc | 1 | ||||
| -rw-r--r-- | examples/hash_crc32_example/example.cc | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/examples/fix_tag_example/example.cc b/examples/fix_tag_example/example.cc index 40cf33e..640dfbe 100644 --- a/examples/fix_tag_example/example.cc +++ b/examples/fix_tag_example/example.cc @@ -1,4 +1,3 @@ -#include <core/handler.hpp> #include <fix/parser.hpp> #include <io/print.hpp> diff --git a/examples/hash_crc32_example/example.cc b/examples/hash_crc32_example/example.cc index 3f635de..dc4b3e3 100644 --- a/examples/hash_crc32_example/example.cc +++ b/examples/hash_crc32_example/example.cc @@ -1,11 +1,11 @@ -#include <hashing/hash.hpp> +#include <hashing/crc_hash.hpp> #include <io/print.hpp> int main(int argc, char** argv) { if (argc != 2) return 1; - std::hash<ocl::hash_trait> hash{}; + std::hash<ocl::crc_hash_trait> hash{}; ocl::io::print(hash(argv[1])); return 0; |
