Fixed a small warning with Screen's constructor
This commit is contained in:
parent
9b7ba7b5b8
commit
77f4d5448b
|
@ -9,7 +9,7 @@ namespace Pinetime {
|
||||||
namespace Screens {
|
namespace Screens {
|
||||||
class Screen {
|
class Screen {
|
||||||
public:
|
public:
|
||||||
Screen(DisplayApp* app) : app{app} {}
|
explicit Screen(DisplayApp* app) : app{app} {}
|
||||||
virtual ~Screen() = default;
|
virtual ~Screen() = default;
|
||||||
|
|
||||||
// Return false if the app can be closed, true if it must continue to run
|
// Return false if the app can be closed, true if it must continue to run
|
||||||
|
|
Loading…
Reference in New Issue
Block a user