From 06071da028b06562a3fdadd125e95730370314bc Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Tue, 27 Jul 2021 17:05:52 -0700 Subject: [PATCH] fixed clang compile warning --- app/node/project/footage/footage.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/node/project/footage/footage.h b/app/node/project/footage/footage.h index 9f6b45c72..abfc7f873 100644 --- a/app/node/project/footage/footage.h +++ b/app/node/project/footage/footage.h @@ -193,8 +193,8 @@ public: static rational AdjustTimeByLoopMode(rational time, LoopMode loop_mode, const rational& length, VideoParams::Type type, const rational &timebase); - virtual qint64 creation_time() const; - virtual qint64 mod_time() const; + virtual qint64 creation_time() const override; + virtual qint64 mod_time() const override; static const QString kFilenameInput; static const QString kLoopModeInput;