summaryrefslogtreecommitdiff
path: root/libs/evoral/evoral/EventList.hpp
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2012-03-30 00:03:53 +0000
committerCarl Hetherington <carl@carlh.net>2012-03-30 00:03:53 +0000
commit8ae1880e33803a41f9095a3f9e146bd6a96a3441 (patch)
tree74c9111c57bfebfa8612e26eb5bc059e5e4b5154 /libs/evoral/evoral/EventList.hpp
parente31e23892772afe3b1c077649652f0304ee3ab31 (diff)
Some fixes for GCC 4.7.0
git-svn-id: svn://localhost/ardour2/branches/3.0@11767 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/evoral/evoral/EventList.hpp')
-rw-r--r--libs/evoral/evoral/EventList.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/evoral/evoral/EventList.hpp b/libs/evoral/evoral/EventList.hpp
index 81243f8cbb..e1a2679ce7 100644
--- a/libs/evoral/evoral/EventList.hpp
+++ b/libs/evoral/evoral/EventList.hpp
@@ -36,7 +36,7 @@ public:
EventList() {}
uint32_t write(Time time, EventType type, uint32_t size, const uint8_t* buf) {
- push_back(new Evoral::Event<Time>(
+ this->push_back(new Evoral::Event<Time>(
type, time, size, const_cast<uint8_t*>(buf), true)); // Event copies buffer
return size;
}