Clock: add missing Settings include

Add missing include in `Clock.cpp` for `Settings.h`. The Settings class
is forward declared in the header file, but it needs to be included in
the cpp file.
This commit is contained in:
Reinhold Gschweicher 2021-11-30 22:29:00 +01:00 committed by JF
parent b8dfad40bb
commit 85a25302bf

View file

@ -6,6 +6,7 @@
#include "components/motion/MotionController.h"
#include "components/ble/BleController.h"
#include "components/ble/NotificationManager.h"
#include "components/settings/Settings.h"
#include "displayapp/DisplayApp.h"
#include "displayapp/screens/WatchFaceDigital.h"
#include "displayapp/screens/WatchFaceAnalog.h"