From 7aa8347374bd04d3aeb408c0fca79a01058c8b30 Mon Sep 17 00:00:00 2001 From: acxz <17132214+acxz@users.noreply.github.com> Date: Mon, 15 May 2023 20:17:49 -0500 Subject: [PATCH] AP_HAL_Linux: remove std:: scope from uint16_t --- libraries/AP_HAL_Linux/CANSocketIface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/AP_HAL_Linux/CANSocketIface.cpp b/libraries/AP_HAL_Linux/CANSocketIface.cpp index e44e7798a0..b7c34e2d12 100644 --- a/libraries/AP_HAL_Linux/CANSocketIface.cpp +++ b/libraries/AP_HAL_Linux/CANSocketIface.cpp @@ -221,7 +221,7 @@ void CANIface::_poll(bool read, bool write) } bool CANIface::configureFilters(const CanFilterConfig* const filter_configs, - const std::uint16_t num_configs) + const uint16_t num_configs) { if (filter_configs == nullptr || mode_ != FilteredMode) { return false;