summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/export_file_io.h
diff options
context:
space:
mode:
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);