From c7a79619e06fe84a5fbb8757ba4132f9295eaee4 Mon Sep 17 00:00:00 2001 From: rusefillc <48498823+rusefillc@users.noreply.github.com> Date: Sun, 7 Jan 2024 15:32:41 -0500 Subject: [PATCH] encapsulation (#335) Co-authored-by: rusefillc --- firmware/controllers/system/timer/event_queue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/controllers/system/timer/event_queue.h b/firmware/controllers/system/timer/event_queue.h index b028ed2f21..c6170f9b41 100644 --- a/firmware/controllers/system/timer/event_queue.h +++ b/firmware/controllers/system/timer/event_queue.h @@ -60,11 +60,11 @@ public: int size(void) const; scheduling_s *getElementAtIndexForUnitText(int index); scheduling_s * getHead(); - void assertListIsSorted() const; scheduling_s* getFreeScheduling(); void tryReturnScheduling(scheduling_s* sched); private: + void assertListIsSorted() const; /** * this list is sorted */