Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroshade committed Aug 29, 2023
1 parent ef298a6 commit 1ee4a4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/src/arrow/device.h
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class ARROW_EXPORT Device : public std::enable_shared_from_this<Device>,
/// and memory allocations.
virtual Result<std::shared_ptr<Stream>> MakeStream(unsigned int flags) {
return NULLPTR;
};
}

/// @brief Wrap an existing device stream alongside a release function
///
Expand Down Expand Up @@ -258,7 +258,7 @@ class ARROW_EXPORT MemoryManager : public std::enable_shared_from_this<MemoryMan

/// \brief Wrap an event into a SyncEvent.
///
/// @param sync_event passed in sync_event (should be a CUevent*)
/// @param sync_event passed in sync_event (should be a pointer to the appropriate type)
/// @param release_sync_event destructor to free sync_event. `nullptr` may be
/// passed to indicate that no destruction/freeing is necessary
virtual Result<std::shared_ptr<Device::SyncEvent>> WrapDeviceSyncEvent(
Expand Down

0 comments on commit 1ee4a4c

Please sign in to comment.