summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorJannis Voelker <jannis.voelker@basyskom.com>2024-02-27 16:02:22 +0100
committerJannis Voelker <jannis.voelker@basyskom.com>2024-02-29 12:46:18 +0100
commitc98a63262b29e1657f0f2a668b0646deeabe6f25 (patch)
tree0a6bb392869a3a1c536aebb2a72ab8879739cc50 /examples
parent5b017db4fe1fd5081471cdb22ac5f9bdedbafec8 (diff)
Always add a comma to the last entry of an enum
Pick-to: 6.7 Change-Id: I17ed482908d50b0f16f695b0b6a61d744f21fd0a Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
Diffstat (limited to 'examples')
-rw-r--r--examples/opcua/waterpump/waterpump-qmlcpp/opcuamachinebackend.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/opcua/waterpump/waterpump-qmlcpp/opcuamachinebackend.h b/examples/opcua/waterpump/waterpump-qmlcpp/opcuamachinebackend.h
index 26c79a1..f2ea08d 100644
--- a/examples/opcua/waterpump/waterpump-qmlcpp/opcuamachinebackend.h
+++ b/examples/opcua/waterpump/waterpump-qmlcpp/opcuamachinebackend.h
@@ -16,7 +16,7 @@ public:
enum class MachineState : quint32 {
Idle,
Pumping,
- Flushing
+ Flushing,
};
Q_ENUM(MachineState)