13
0

Some fixes for GCC 4.7.0

git-svn-id: svn://localhost/ardour2/branches/3.0@11767 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2012-03-30 00:03:53 +00:00
parent e31e238927
commit 8ae1880e33
4 changed files with 4 additions and 3 deletions

View File

@ -43,7 +43,7 @@ class SndfileReader
if (frames_read < context.frames()) {
c_out.set_flag (ProcessContext<T>::EndOfInput);
}
output (c_out);
this->output (c_out);
return frames_read;
}

View File

@ -125,7 +125,7 @@ SampleFormatConverter<TOut>::process (ProcessContext<float> const & c_in)
/* Write forward */
ProcessContext<TOut> c_out(c_in, data_out);
output (c_out);
this->output (c_out);
}
/* Basic non-const version of process(), calls the const one */

View File

@ -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;
}

View File

@ -28,6 +28,7 @@
#else
#include <getopt.h>
#include <sys/time.h>
#include <unistd.h>
#endif
#include "Profiler.h"