summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/export_file_io.h
diff options
context:
space:
mode:
authorSakari Bergen <sakari.bergen@beatwaves.net>2008-12-29 19:50:19 +0000
committerSakari Bergen <sakari.bergen@beatwaves.net>2008-12-29 19:50:19 +0000
commit3d239bb9d59f555d08fd9362e9ce50de1255c633 (patch)
tree8346d16f52cdbf54d92268d6f64f60a3cdc1d925 /libs/ardour/ardour/export_file_io.h
parent22d73333c62957ec9d3ecfb47849c4e2048e2e3f (diff)
Fix some compiling warnings and errors in OS X
git-svn-id: svn://localhost/ardour2/branches/3.0@4358 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/export_file_io.h')
-rw-r--r--libs/ardour/ardour/export_file_io.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/ardour/export_file_io.h b/libs/ardour/ardour/export_file_io.h
index 6705b7736a..0e15981c25 100644
--- a/libs/ardour/ardour/export_file_io.h
+++ b/libs/ardour/ardour/export_file_io.h
@@ -77,8 +77,9 @@ class SndfileWriterBase : public ExportFileWriter
template <typename T>
class SndfileWriter : public SndfileWriterBase, public GraphSink<T>
{
- protected:
+ // FIXME: having this protected doesn't work with Apple's gcc
// Should only be created vie ExportFileFactory and derived classes
+ public: // protected
friend class ExportFileFactory;
SndfileWriter (int channels, nframes_t samplerate, int format, string const & path);