Skip to content

Commit

Permalink
Update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
uweseimet committed Sep 7, 2023
1 parent 04bc65f commit f554c13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/controllers/abstract_controller.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class AbstractController : public PhaseHandler, public enable_shared_from_this<A

// TODO These should probably be extracted into a new TransferHandler class
void AllocateBuffer(size_t);
// TODO Consider using std::span instead of std::vector&
// TODO Consider using std::span& instead of std::vector&
vector<uint8_t>& GetBuffer() { return ctrl.buffer; }
scsi_defs::status GetStatus() const { return ctrl.status; }
void SetStatus(scsi_defs::status s) { ctrl.status = s; }
Expand Down

0 comments on commit f554c13

Please sign in to comment.