From 75fb4557e51c42a9a1d6c4bf589a4c235c276553 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 21 Jul 2010 17:46:45 +0000 Subject: [PATCH] removed #if 0 code git-svn-id: svn://localhost/ardour2/branches/3.0@7461 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/evoral/src/SMF.cpp | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/libs/evoral/src/SMF.cpp b/libs/evoral/src/SMF.cpp index 210692f114..f2e12fdeb6 100644 --- a/libs/evoral/src/SMF.cpp +++ b/libs/evoral/src/SMF.cpp @@ -172,22 +172,6 @@ void SMF::close() THROW_FILE_ERROR { if (_smf) { -#if 0 - /* XXX why would we automatically save-on-close? - */ - - PBD::StdioFileDescriptor d (_file_path, "w+"); - FILE* f = d.allocate (); - if (f == 0) { - throw FileError (); - } - - cerr << "CLOSE: Save SMF to " << _file_path << endl; - - if (smf_save(_smf, f) != 0) { - throw FileError(); - } -#endif smf_delete(_smf); _smf = 0; _smf_track = 0;