sm7325-common: gps: Resolve unused parameter warnings

Change-Id: I3f92e977a847583f35a5a597487c52b5e0e09dde
This commit is contained in:
Michael Bestas 2024-08-16 03:25:36 +03:00 committed by Marc Bourgoin
parent c7eb5ab0ba
commit e5deb4a931
2 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,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

@ -310,7 +310,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,