sm6225-common: gps: Resolve more unused parameter warnings

Change-Id: I8c0b039c610ae4abc82b1bb8d975cb76b9ba2027
This commit is contained in:
Tommaso Fonda 2023-12-16 19:26:11 +01:00 committed by Michael Bestas
parent 58e72f4794
commit 0ea4719b77
No known key found for this signature in database
GPG key ID: CC95044519BE6669
2 changed files with 2 additions and 2 deletions

View file

@ -88,7 +88,7 @@ public:
}
virtual void dump(void) {};
inline virtual bool ignore() { return false; };
virtual bool equals(const SystemStatusItemBase& peer) { return false; }
virtual bool equals(const SystemStatusItemBase& peer __unused) { return false; }
};
class SystemStatusLocation : public SystemStatusItemBase

View file

@ -271,7 +271,7 @@ public:
bool available = false,
bool connected = false,
bool roaming = false,
uint64_t networkHandle = NETWORK_HANDLE_UNKNOWN, string apn = ""):
uint64_t networkHandle = NETWORK_HANDLE_UNKNOWN, string apn __unused = ""):
NetworkInfoDataItem(getNormalizedType(type), type, typeName, subTypeName, available,
connected, roaming, networkHandle, "") {}
NetworkInfoDataItem(NetworkType initialType, int32_t type, string typeName,