Add trailing comma to last member in enum

This should prevent clang-format from squashing the enum on one line.

GIT_SILENT
This commit is contained in:
Ahmad Samir 2021-02-23 19:56:12 +02:00
parent 8d19e1c896
commit ac109502d5

View File

@ -44,13 +44,13 @@ public:
Emote,
International,
Place,
StatusIcon
StatusIcon,
};
Q_ENUM(Context)
enum Type {
Fixed,
Scalable,
Threshold
Threshold,
};
Q_ENUM(Type)
};