'libs/ardour' - Minor changes to prevent MSVC from complaining about malformed comments
authorJohn Emmas <johne53@tiscali.co.uk>
Thu, 5 Sep 2013 09:07:57 +0000 (10:07 +0100)
committerJohn Emmas <johne53@tiscali.co.uk>
Thu, 5 Sep 2013 09:07:57 +0000 (10:07 +0100)
libs/ardour/session_state.cc

index f588080f25e23f710a5090a1e7501aeee005e65c..4837d8450ecfe2598df2ff3a061996f1a676e99d 100644 (file)
@@ -2353,7 +2353,7 @@ Session::auto_save()
 }
 
 static bool
-state_file_filter (const string &str, void */*arg*/)
+state_file_filter (const string &str, void/*arg*/)
 {
        return (str.length() > strlen(statefile_suffix) &&
                str.find (statefile_suffix) == (str.length() - strlen (statefile_suffix)));
@@ -2530,7 +2530,7 @@ Session::commit_reversible_command (Command *cmd)
 }
 
 static bool
-accept_all_audio_files (const string& path, void */*arg*/)
+accept_all_audio_files (const string& path, void/*arg*/)
 {
         if (!Glib::file_test (path, Glib::FILE_TEST_IS_REGULAR)) {
                 return false;
@@ -2544,7 +2544,7 @@ accept_all_audio_files (const string& path, void */*arg*/)
 }
 
 static bool
-accept_all_midi_files (const string& path, void */*arg*/)
+accept_all_midi_files (const string& path, void/*arg*/)
 {
         if (!Glib::file_test (path, Glib::FILE_TEST_IS_REGULAR)) {
                 return false;
@@ -2556,7 +2556,7 @@ accept_all_midi_files (const string& path, void */*arg*/)
 }
 
 static bool
-accept_all_state_files (const string& path, void */*arg*/)
+accept_all_state_files (const string& path, void/*arg*/)
 {
         if (!Glib::file_test (path, Glib::FILE_TEST_IS_REGULAR)) {
                 return false;