From 75d471c5384b9a4bbe871c0b62ae1cbdf7c12e30 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Wed, 16 Nov 2011 19:55:40 +0000 Subject: [PATCH] Remove unneeded overloaded operators for AudioMarkerKeyframe Originally committed to SVN as r5857. --- aegisub/src/audio_controller.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/aegisub/src/audio_controller.cpp b/aegisub/src/audio_controller.cpp index 79c3b0d2b..a2fd020c2 100644 --- a/aegisub/src/audio_controller.cpp +++ b/aegisub/src/audio_controller.cpp @@ -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;