mirror of https://github.com/ArduPilot/ardupilot
AP_VisualOdom: use NEW_NOTHROW for new(std::nothrow)
This commit is contained in:
parent
6a96df4792
commit
659ecf6159
|
@ -138,13 +138,13 @@ void AP_VisualOdom::init()
|
||||||
break;
|
break;
|
||||||
#if AP_VISUALODOM_MAV_ENABLED
|
#if AP_VISUALODOM_MAV_ENABLED
|
||||||
case VisualOdom_Type::MAV:
|
case VisualOdom_Type::MAV:
|
||||||
_driver = new AP_VisualOdom_MAV(*this);
|
_driver = NEW_NOTHROW AP_VisualOdom_MAV(*this);
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
#if AP_VISUALODOM_INTELT265_ENABLED
|
#if AP_VISUALODOM_INTELT265_ENABLED
|
||||||
case VisualOdom_Type::IntelT265:
|
case VisualOdom_Type::IntelT265:
|
||||||
case VisualOdom_Type::VOXL:
|
case VisualOdom_Type::VOXL:
|
||||||
_driver = new AP_VisualOdom_IntelT265(*this);
|
_driver = NEW_NOTHROW AP_VisualOdom_IntelT265(*this);
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue