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.
This commit is contained in:
parent
512ebf0704
commit
6dc49e5bdb
5 changed files with 17 additions and 9 deletions
|
|
@ -10,7 +10,8 @@ namespace Pinetime {
|
|||
|
||||
namespace Screens {
|
||||
|
||||
template <class T> class DirtyValue {
|
||||
template <class T>
|
||||
class DirtyValue {
|
||||
public:
|
||||
DirtyValue() = default; // Use NSDMI
|
||||
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue