Merge "Make sure the VehiclePropValue object is initialized" into main
This commit is contained in:
commit
c61a19bc28
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ namespace V2_0 {
|
|||
|
||||
std::unique_ptr<VehiclePropValue> createVehiclePropValue(
|
||||
VehiclePropertyType type, size_t vecSize) {
|
||||
auto val = std::unique_ptr<VehiclePropValue>(new VehiclePropValue);
|
||||
auto val = std::unique_ptr<VehiclePropValue>(new VehiclePropValue());
|
||||
switch (type) {
|
||||
case VehiclePropertyType::INT32: // fall through
|
||||
case VehiclePropertyType::INT32_VEC: // fall through
|
||||
|
|
Loading…
Reference in a new issue