diff --git a/fuzz_testing/test/acl_hal_fuzz_test.cpp b/fuzz_testing/test/acl_hal_fuzz_test.cpp index 43d07fe4..c7be8858 100644 --- a/fuzz_testing/test/acl_hal_fuzz_test.cpp +++ b/fuzz_testing/test/acl_hal_fuzz_test.cpp @@ -94,7 +94,7 @@ int acl_test_hal_close_devices(cl_uint num_devices, void *acl_test_hal_shared_alloc(cl_device_id device, size_t size, size_t alignment, mem_properties_t *properties, int *error); -void *acl_test_hal_host_alloc(const std::vector devices, +void *acl_test_hal_host_alloc(const std::vector &devices, size_t size, size_t alignment, mem_properties_t *properties, int *error); int acl_test_hal_free(cl_context context, void *ptr); @@ -652,7 +652,7 @@ void *acl_test_hal_shared_alloc(cl_device_id device, size_t size, return (void *)0xdeadbeefdeadbeef; } -void *acl_test_hal_host_alloc(const std::vector, size_t, size_t, +void *acl_test_hal_host_alloc(const std::vector &, size_t, size_t, mem_properties_t *, int *) { return (void *)0xdeadbeefdeadbeef; }