Sync push
This commit is contained in:
parent
025d089bcb
commit
df81456588
2 changed files with 3 additions and 1 deletions
|
|
@ -1 +1 @@
|
||||||
1959
|
1960
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,8 @@ namespace ostd
|
||||||
public:
|
public:
|
||||||
inline bool operator<(const NoteEvent& other) const
|
inline bool operator<(const NoteEvent& other) const
|
||||||
{
|
{
|
||||||
|
if (startTime == other.startTime)
|
||||||
|
return pitch < other.pitch;
|
||||||
return startTime < other.startTime;
|
return startTime < other.startTime;
|
||||||
}
|
}
|
||||||
inline ostd::String toString(void) const
|
inline ostd::String toString(void) const
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue