I forgot to remove the unused operator== functions from TimingSegments.h
This commit is contained in:
@@ -162,12 +162,6 @@ struct FakeSegment : public TimingSegment<FakeSegment>
|
|||||||
* @param b the length in beats. */
|
* @param b the length in beats. */
|
||||||
void SetLength(const float b);
|
void SetLength(const float b);
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Compares two FakeSegments to see if they are equal to each other.
|
|
||||||
* @param other the other FakeSegment to compare to.
|
|
||||||
* @return the equality of the two segments.
|
|
||||||
*/
|
|
||||||
bool operator==( const FakeSegment &other ) const;
|
|
||||||
/**
|
/**
|
||||||
* @brief Compares two FakeSegments to see if one is less than the other.
|
* @brief Compares two FakeSegments to see if one is less than the other.
|
||||||
* @param other the other FakeSegment to compare to.
|
* @param other the other FakeSegment to compare to.
|
||||||
@@ -219,12 +213,6 @@ struct WarpSegment : public TimingSegment<WarpSegment>
|
|||||||
* @param b the length in beats. */
|
* @param b the length in beats. */
|
||||||
void SetLength(const float b);
|
void SetLength(const float b);
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Compares two WarpSegments to see if they are equal to each other.
|
|
||||||
* @param other the other WarpSegment to compare to.
|
|
||||||
* @return the equality of the two segments.
|
|
||||||
*/
|
|
||||||
bool operator==( const WarpSegment &other ) const;
|
|
||||||
/*
|
/*
|
||||||
* @brief Compares two WarpSegments to see if one is less than the other.
|
* @brief Compares two WarpSegments to see if one is less than the other.
|
||||||
* @param other the other WarpSegment to compare to.
|
* @param other the other WarpSegment to compare to.
|
||||||
@@ -281,12 +269,6 @@ struct TickcountSegment : public TimingSegment<TickcountSegment>
|
|||||||
* @param i the tickcount. */
|
* @param i the tickcount. */
|
||||||
void SetTicks(const int i);
|
void SetTicks(const int i);
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Compares two TickcountSegments to see if they are equal to each other.
|
|
||||||
* @param other the other TickcountSegment to compare to.
|
|
||||||
* @return the equality of the two segments.
|
|
||||||
*/
|
|
||||||
bool operator==( const TickcountSegment &other ) const;
|
|
||||||
/**
|
/**
|
||||||
* @brief Compares two TickcountSegments to see if one is less than the other.
|
* @brief Compares two TickcountSegments to see if one is less than the other.
|
||||||
* @param other the other TickcountSegment to compare to.
|
* @param other the other TickcountSegment to compare to.
|
||||||
|
|||||||
Reference in New Issue
Block a user