Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/opentime/rationalTime.h
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ class RationalTime

std::string to_time_string() const;

constexpr RationalTime const& operator+=(RationalTime other) noexcept
inline RationalTime const& operator+=(RationalTime other) noexcept
{
if (_rate < other._rate)
{
Expand All @@ -167,7 +167,7 @@ class RationalTime
return *this;
}

constexpr RationalTime const& operator-=(RationalTime other) noexcept
inline RationalTime const& operator-=(RationalTime other) noexcept
{
if (_rate < other._rate)
{
Expand Down