Skip to content

Commit

Permalink
Remove trailing semicolon from Q_DECLARE_METATYPE(...);
Browse files Browse the repository at this point in the history
Fixes -Wpedantic errors
  • Loading branch information
Simran-B committed Sep 11, 2023
1 parent 718dbf3 commit a850d5e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/common/qtutils.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,11 @@ uint qHash(const core::TimeRange& r, uint seed = 0);

}

Q_DECLARE_METATYPE(olive::core::rational);
Q_DECLARE_METATYPE(olive::core::Color);
Q_DECLARE_METATYPE(olive::core::TimeRange);
Q_DECLARE_METATYPE(olive::core::Bezier);
Q_DECLARE_METATYPE(olive::core::AudioParams);
Q_DECLARE_METATYPE(olive::core::SampleBuffer);
Q_DECLARE_METATYPE(olive::core::rational)
Q_DECLARE_METATYPE(olive::core::Color)
Q_DECLARE_METATYPE(olive::core::TimeRange)
Q_DECLARE_METATYPE(olive::core::Bezier)
Q_DECLARE_METATYPE(olive::core::AudioParams)
Q_DECLARE_METATYPE(olive::core::SampleBuffer)

#endif // QTVERSIONABSTRACTION_H

0 comments on commit a850d5e

Please sign in to comment.