InputBar: mark constrictor as explicit

Suggested-By:

Clang-Tidy: Single-argument constructors must be marked explicit to
avoid unintentional implicit conversions

More info: https://clang.llvm.org/extra/clang-tidy/checks/google-explicit-constructor.html
This commit is contained in:
Marcus Hoffmann 2021-12-03 01:29:15 +01:00
parent 8aa4a60d12
commit 9676b7709d
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ class InputBar : public QObject
Q_PROPERTY(QString text READ text NOTIFY textChanged)
public:
InputBar(TimelineModel *parent)
explicit InputBar(TimelineModel *parent)
: QObject()
, room(parent)
{