Sync push

This commit is contained in:
Sylar 2026-01-09 04:32:54 +01:00
parent 025d089bcb
commit df81456588
2 changed files with 3 additions and 1 deletions

View file

@ -1 +1 @@
1959
1960

View file

@ -25,6 +25,8 @@ namespace ostd
public:
inline bool operator<(const NoteEvent& other) const
{
if (startTime == other.startTime)
return pitch < other.pitch;
return startTime < other.startTime;
}
inline ostd::String toString(void) const