diff options
-rw-r--r-- | .clang-format | 4 | ||||
-rw-r--r-- | lib/room.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.clang-format b/.clang-format index 6e13223e..713d2165 100644 --- a/.clang-format +++ b/.clang-format @@ -104,8 +104,8 @@ PenaltyBreakComment: 45 #PenaltyBreakFirstLessLess: 120 PenaltyBreakString: 200 #PenaltyBreakTemplateDeclaration: 10 -PenaltyExcessCharacter: 20 -PenaltyReturnTypeOnItsOwnLine: 60 +PenaltyExcessCharacter: 40 +PenaltyReturnTypeOnItsOwnLine: 100 #PointerAlignment: Left #ReflowComments: true #SortIncludes: true @@ -101,7 +101,7 @@ struct EventStats; struct Notification { enum Type { None = 0, Basic, Highlight }; - Q_ENUM(Notification) + Q_ENUM(Type) Type type = None; |