diff options
Diffstat (limited to 'modules/remote-sycl/c++')
-rw-r--r-- | modules/remote-sycl/c++/remote.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/remote-sycl/c++/remote.hpp b/modules/remote-sycl/c++/remote.hpp index 19f4bb6..a481740 100644 --- a/modules/remote-sycl/c++/remote.hpp +++ b/modules/remote-sycl/c++/remote.hpp @@ -58,14 +58,14 @@ public: * For now we don't need to specify the location since * we just create a default. */ - conveyor<own<remote_address<rmt::Sycl>>> resolve_address(uint64_t dev_id){ + conveyor<own<remote_address<rmt::Sycl>>> resolve_address(uint64_t dev_id = 0u){ return heap<remote_address<rmt::Sycl>>(dev_id); } /** * Parse address, but don't resolve it. */ - error_or<own<remote_address<rmt::Sycl>>> parse_address(uint64_t dev_id){ + error_or<own<remote_address<rmt::Sycl>>> parse_address(uint64_t dev_id = 0u){ return heap<remote_address<rmt::Sycl>>(dev_id); } |