Skip to content

Commit

Permalink
Address warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Diamond committed Oct 5, 2023
1 parent 2561cf1 commit c0cd36c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion examples/request_version/request_version.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ alignas(4) uint8_t storage[4096];

// Fake Send/Receive functions.
/******************************************************************************/
void SendData(void* data, size_t data_len_bytes) {}
void SendData(void* data, size_t data_len_bytes) {
(void)data;
(void)data_len_bytes;
}

/******************************************************************************/
size_t ReceiveData(uint8_t* buffer, size_t read_size) {
Expand Down

0 comments on commit c0cd36c

Please sign in to comment.