NO-OP: Whitespace
[ardour.git] / libs / ardour / session_directory.cc
index c52fe1aeb5c30e72389f8ac348fa643a818caae3..fd90959ac4ca04dfa7335e906f41bfe1c467d7b0 100644 (file)
@@ -167,7 +167,7 @@ SessionDirectory::sources_root () const
                        PBD::fatal << string_compose (_("The session's interchange dir is tainted.\nThere is more than one folder in '%1'.\nPlease remove extra subdirs to reduce possible filename ambiguties."), sources_root_path) << endmsg;
                        assert (0); // not reached
                }
-       } catch (Glib::FileError) {
+       } catch (Glib::FileError const&) {
                ;
        }
 
@@ -245,6 +245,12 @@ SessionDirectory::export_path () const
        return Glib::build_filename (m_root_path, export_dir_name);
 }
 
+const std::string
+SessionDirectory::backup_path () const
+{
+       return Glib::build_filename (m_root_path, backup_dir_name);
+}
+
 const vector<std::string>
 SessionDirectory::sub_directories () const
 {
@@ -256,6 +262,7 @@ SessionDirectory::sub_directories () const
        tmp_paths.push_back (peak_path ());
        tmp_paths.push_back (dead_path ());
        tmp_paths.push_back (export_path ());
+       tmp_paths.push_back (backup_path ());
 
        return tmp_paths;
 }