From cddb9484a939f04c580e70a871b2c35babb064ac Mon Sep 17 00:00:00 2001 From: Matthew Kennedy Date: Sun, 19 Dec 2021 06:58:49 -0800 Subject: [PATCH] make macos happy (#3699) * s * explicitly include it because that's a good idea. --- firmware/controllers/core/state_sequence.h | 1 - unit_tests/tests/test_can_serial.cpp | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/firmware/controllers/core/state_sequence.h b/firmware/controllers/core/state_sequence.h index 0c64fb702e..72934bed19 100644 --- a/firmware/controllers/core/state_sequence.h +++ b/firmware/controllers/core/state_sequence.h @@ -77,7 +77,6 @@ public: } void setSwitchTime(const int phaseIndex, const float value) { - efiAssertVoid(CUSTOM_ERR_PWM_SWITCH_ASSERT, switchTimes != nullptr, "switchTimes"); switchTimes[phaseIndex] = value; } diff --git a/unit_tests/tests/test_can_serial.cpp b/unit_tests/tests/test_can_serial.cpp index 50b51936d8..03f69ce281 100644 --- a/unit_tests/tests/test_can_serial.cpp +++ b/unit_tests/tests/test_can_serial.cpp @@ -8,13 +8,13 @@ * @author Andrey Belomutskiy, (c) 2012-2020 */ -#include -#include - #include "pch.h" #include "engine_test_helper.h" #include "serial_can.h" +#include +#include +#include using namespace std::string_literals;