Remove unneeded overloaded operators for AudioMarkerKeyframe

Originally committed to SVN as r5857.
This commit is contained in:
Thomas Goyne 2011-11-16 19:55:40 +00:00
parent 672f420d6c
commit 75d471c538
1 changed files with 0 additions and 3 deletions

View File

@ -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;