From 7b46e9c57c49575ff169c040cb6000cc98c4fedc Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 22 Oct 2009 21:54:32 +0000 Subject: [PATCH] Fix adding multiple notes with the same time stamp (geeze). git-svn-id: svn://localhost/ardour2/branches/3.0@5872 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/evoral/evoral/Sequence.hpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libs/evoral/evoral/Sequence.hpp b/libs/evoral/evoral/Sequence.hpp index 21db34eb68..8c0eab1be9 100644 --- a/libs/evoral/evoral/Sequence.hpp +++ b/libs/evoral/evoral/Sequence.hpp @@ -21,8 +21,7 @@ #include #include -#include -#include +#include #include #include #include @@ -133,7 +132,7 @@ public: } }; - typedef std::set >, EarlierNoteComparator> Notes; + typedef std::multiset >, EarlierNoteComparator> Notes; inline Notes& notes() { return _notes; } inline const Notes& notes() const { return _notes; }