From 2156870df991bf6231121460810b0edcde74137b Mon Sep 17 00:00:00 2001 From: Dean Lee Date: Sat, 13 Jul 2024 07:20:49 +0800 Subject: [PATCH] pandad: remove return statement in constructor (#32975) remove return --- selfdrive/pandad/panda.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/selfdrive/pandad/panda.cc b/selfdrive/pandad/panda.cc index a404ad3880..fcb4ac67a4 100644 --- a/selfdrive/pandad/panda.cc +++ b/selfdrive/pandad/panda.cc @@ -26,8 +26,6 @@ Panda::Panda(std::string serial, uint32_t bus_offset) : bus_offset(bus_offset) { hw_type = get_hw_type(); can_reset_communications(); - - return; } bool Panda::connected() {