diff options
author | Michael Bestas <mkbestas@gmail.com> | 2021-01-06 19:23:51 +0200 |
---|---|---|
committer | Michael Bestas <mkbestas@lineageos.org> | 2021-01-15 22:12:20 +0200 |
commit | fd0c1dff85e60519dd9b47999842950c4b133704 (patch) | |
tree | 92c05f9da0d544c82ed23cf19a68082c56cf9a7b /gps/utils/LocIpc.h | |
parent | d411e3b057cacf92b3c378e750a03d2ebb28639b (diff) |
sdm660-common: gps: Resolve unused parameter warnings
Change-Id: I0acef3da2c3567a28edd0a71dac89a5828f7725d
Diffstat (limited to 'gps/utils/LocIpc.h')
-rw-r--r-- | gps/utils/LocIpc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gps/utils/LocIpc.h b/gps/utils/LocIpc.h index d6f8d1d..e13bd5c 100644 --- a/gps/utils/LocIpc.h +++ b/gps/utils/LocIpc.h @@ -132,7 +132,7 @@ public: inline bool sendData(const uint8_t data[], uint32_t length, int32_t msgId) const { return isSendable() && (send(data, length, msgId) > 0); } - virtual unique_ptr<LocIpcRecver> getRecver(const shared_ptr<ILocIpcListener>& listener) { + virtual unique_ptr<LocIpcRecver> getRecver(const shared_ptr<ILocIpcListener>& /*listener*/) { return nullptr; } }; |