mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
Add default member initializers for bool and int
Bug: 310650389 Change-Id: I1742bbc9b894b2cd379695d6b197c80f4054e395 Test: atest VtsHalRadioTargetTest
This commit is contained in:
@@ -38,16 +38,16 @@ class RadioNetworkResponse : public BnRadioNetworkResponse {
|
||||
RadioResponseInfo rspInfo;
|
||||
std::vector<RadioBandMode> radioBandModes;
|
||||
std::vector<OperatorInfo> networkInfos;
|
||||
bool isNrDualConnectivityEnabled;
|
||||
int networkTypeBitmapResponse;
|
||||
bool isNrDualConnectivityEnabled = false;
|
||||
int networkTypeBitmapResponse = 0;
|
||||
RegStateResult voiceRegResp;
|
||||
RegStateResult dataRegResp;
|
||||
CellIdentity barringCellIdentity;
|
||||
std::vector<BarringInfo> barringInfoList;
|
||||
UsageSetting usageSetting;
|
||||
std::vector<RadioAccessSpecifier> specifiers;
|
||||
bool isCellularIdentifierTransparencyEnabled;
|
||||
bool isSecurityAlgorithmsUpdatedEnabled;
|
||||
bool isCellularIdentifierTransparencyEnabled = false;
|
||||
bool isSecurityAlgorithmsUpdatedEnabled = false;
|
||||
|
||||
virtual ndk::ScopedAStatus acknowledgeRequest(int32_t serial) override;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user