Skip to content

Commit 02362c3

Browse files
committed
services/pipewire: add missing ; after Q_ENUM for docgen
1 parent 3d3b7f1 commit 02362c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/services/pipewire/node.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,8 @@ class PwNodeType: public QObject {
145145
// @@PwNodeType.Video and @@PwNodeType.Sink flags.
146146
VideoSink = Video | Sink,
147147
};
148-
Q_ENUM(Flag)
149-
Q_DECLARE_FLAGS(Flags, Flag)
148+
Q_ENUM(Flag);
149+
Q_DECLARE_FLAGS(Flags, Flag);
150150
Q_INVOKABLE static QString toString(qs::service::pipewire::PwNodeType::Flags type);
151151
};
152152

0 commit comments

Comments
 (0)