summaryrefslogtreecommitdiff
path: root/libs/audiographer/src
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/audiographer/src
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/audiographer/src')
-rw-r--r--libs/audiographer/src/general/sample_format_converter.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/audiographer/src/general/sample_format_converter.cc b/libs/audiographer/src/general/sample_format_converter.cc
index a1aa4d88a9..0dab2689dd 100644
--- a/libs/audiographer/src/general/sample_format_converter.cc
+++ b/libs/audiographer/src/general/sample_format_converter.cc
@@ -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 */