diff options
| author | Riku Isokoski <riksu9000@gmail.com> | 2023-01-25 11:24:38 +0200 |
|---|---|---|
| committer | Riku Isokoski <riksu9000@gmail.com> | 2023-02-16 09:13:58 +0200 |
| commit | 6dc49e5bdb86ffd5730eb10eb9c477276e79923c (patch) | |
| tree | b1241ee8c63c42ef8589bdce88566476519cd5df /src/displayapp/screens/ScreenList.h | |
| parent | 512ebf07043510930256e3c12498046b510ef8a1 (diff) | |
clang-format: Always break template declarations
I find this format easier to read, because the definitions are at the
expected indentation, making it easier to find what I'm looking for.
Diffstat (limited to 'src/displayapp/screens/ScreenList.h')
| -rw-r--r-- | src/displayapp/screens/ScreenList.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/displayapp/screens/ScreenList.h b/src/displayapp/screens/ScreenList.h index 6c9a2218..255544b6 100644 --- a/src/displayapp/screens/ScreenList.h +++ b/src/displayapp/screens/ScreenList.h @@ -12,7 +12,8 @@ namespace Pinetime { enum class ScreenListModes { UpDown, RightLeft, LongPress }; - template <size_t N> class ScreenList : public Screen { + template <size_t N> + class ScreenList : public Screen { public: ScreenList(DisplayApp* app, uint8_t initScreen, |
