forked from mia/Aegisub
Remove unneeded overloaded operators for AudioMarkerKeyframe
Originally committed to SVN as r5857.
This commit is contained in:
parent
672f420d6c
commit
75d471c538
1 changed files with 0 additions and 3 deletions
|
@ -68,11 +68,8 @@ public:
|
|||
FeetStyle GetFeet() const { return Feet_None; }
|
||||
bool CanSnap() const { return true; }
|
||||
wxPen GetStyle() const { return *style; }
|
||||
bool operator < (const AudioMarkerKeyframe &other) const { return position < other.position; }
|
||||
operator int64_t() const { return position; }
|
||||
};
|
||||
bool operator < (int64_t a, const AudioMarkerKeyframe &b) { return a < b.GetPosition(); }
|
||||
bool operator < (const AudioMarkerKeyframe &a, int64_t b) { return a.GetPosition() < b; }
|
||||
|
||||
class AudioMarkerProviderKeyframes : public AudioMarkerProvider {
|
||||
VideoContext *vc;
|
||||
|
|
Loading…
Reference in a new issue