diff options
| author | Finlay Davidson <finlay.davidson@coderclass.nl> | 2023-03-16 21:49:44 +0100 |
|---|---|---|
| committer | Riku Isokoski <riksu9000@gmail.com> | 2023-03-27 22:12:32 +0000 |
| commit | 47931f41d579371c9c78ae7061317bf28848db2f (patch) | |
| tree | a7f2668f902c4c71cac56035b5f6fbf67919cb7b /src/displayapp | |
| parent | 2ba8b179679aa92be46ac7688542b68f2695e04d (diff) | |
staticstack: Move to src/utility
Diffstat (limited to 'src/displayapp')
| -rw-r--r-- | src/displayapp/DisplayApp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/displayapp/DisplayApp.h b/src/displayapp/DisplayApp.h index 58df99c0..28d29cd4 100644 --- a/src/displayapp/DisplayApp.h +++ b/src/displayapp/DisplayApp.h @@ -19,7 +19,7 @@ #include "displayapp/Messages.h" #include "BootErrors.h" -#include "StaticStack.h" +#include "utility/StaticStack.h" namespace Pinetime { @@ -126,8 +126,8 @@ namespace Pinetime { void ApplyBrightness(); static constexpr size_t returnAppStackSize = 10; - StaticStack<Apps, returnAppStackSize> returnAppStack; - StaticStack<FullRefreshDirections, returnAppStackSize> appStackDirections; + Utility::StaticStack<Apps, returnAppStackSize> returnAppStack; + Utility::StaticStack<FullRefreshDirections, returnAppStackSize> appStackDirections; bool isDimmed = false; }; |
