diff options
| author | Michele Bini <michele.bini@gmail.com> | 2022-06-10 19:18:01 (GMT) |
|---|---|---|
| committer | Michele Bini <michele.bini@gmail.com> | 2022-06-11 01:09:51 (GMT) |
| commit | f022fef811e5a7809d566308dc321624dcdd989d (patch) | |
| tree | 1bdf3caf2b0ab5039027a76e37d78990402b0c7d /src/displayapp/screens/Calculator.h | |
| parent | 4e3a3b312c946bed572e4c1a05314ddd673c3389 (diff) | |
Remove gotos
Diffstat (limited to 'src/displayapp/screens/Calculator.h')
| -rw-r--r-- | src/displayapp/screens/Calculator.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/displayapp/screens/Calculator.h b/src/displayapp/screens/Calculator.h index 7b1e49b..06818f6 100644 --- a/src/displayapp/screens/Calculator.h +++ b/src/displayapp/screens/Calculator.h @@ -5,7 +5,6 @@ #include "Screen.h" #include "components/motor/MotorController.h" #include <array> -#include <string> namespace Pinetime { namespace Applications { @@ -27,7 +26,7 @@ namespace Pinetime { char text[31]; uint8_t position = 0; - void Eval(); + bool Eval(); void Reset(); Controllers::MotorController& motorController; |
