Skip to content
Snippets Groups Projects
Commit cb377dca authored by Jakub Pawlowski's avatar Jakub Pawlowski Committed by android-build-merger
Browse files

Fix bad constructor usage in HearingDevice

am: b7e311c7

Change-Id: I859ce7751ee787fcbf9b5e46f07690a28fa91a1f
parents 9c96297d b7e311c7
No related branches found
No related tags found
No related merge requests found
...@@ -179,7 +179,7 @@ struct HearingDevice { ...@@ -179,7 +179,7 @@ struct HearingDevice {
gap_handle(0), gap_handle(0),
psm(0) {} psm(0) {}
HearingDevice() { HearingDevice(RawAddress::kEmpty, false); } HearingDevice() : HearingDevice(RawAddress::kEmpty, false) {}
/* return true if this device represents left Hearing Aid. Returned value is /* return true if this device represents left Hearing Aid. Returned value is
* valid only after capabilities are discovered */ * valid only after capabilities are discovered */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment