Skip to content

Commit

Permalink
pw_bluetooth_proxy: Add maybe_unused to make downstream happy
Browse files Browse the repository at this point in the history
Bug: 344031126
Bug: 326499764
Change-Id: I2133a30cc71dcdbc9d1838461dc34672cb92f370
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/214360
Reviewed-by: Rob Mohr <[email protected]>
Lint: Lint 🤖 <[email protected]>
Pigweed-Auto-Submit: David Rees <[email protected]>
Commit-Queue: Auto-Submit <[email protected]>
  • Loading branch information
studgeek authored and CQ Bot Account committed Jun 6, 2024
1 parent 7ddafaf commit da7ee07
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pw_bluetooth_proxy/public/pw_bluetooth_proxy/proxy_host.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,10 @@ class ProxyHost {
/// at this time (transient error).
/// UNIMPLEMENTED: If send is not supported by the current implementation.
/// @endrst
pw::Status sendGattNotify(uint16_t connection_handle,
uint16_t attribute_handle,
const pw::span<uint8_t> attribute_value) {
pw::Status sendGattNotify(
[[maybe_unused]] uint16_t connection_handle,
[[maybe_unused]] uint16_t attribute_handle,
[[maybe_unused]] const pw::span<uint8_t> attribute_value) {
return pw::Status::Unimplemented();
}

Expand Down

0 comments on commit da7ee07

Please sign in to comment.