summaryrefslogtreecommitdiff
path: root/libs/ardour/session_directory.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2018-10-26 13:40:03 +0200
committerRobin Gareus <robin@gareus.org>2018-10-26 13:40:03 +0200
commit7c3fd2fe794e5073760457300d24a23f23c54012 (patch)
tree0e222447a3435991400936985faf466d42046bd9 /libs/ardour/session_directory.cc
parent770a1a8a36e2c167d92f7567ccfa0be2064f9208 (diff)
Glib throws a const FileError exception
Diffstat (limited to 'libs/ardour/session_directory.cc')
-rw-r--r--libs/ardour/session_directory.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/session_directory.cc b/libs/ardour/session_directory.cc
index 1f6b991f82..fd90959ac4 100644
--- a/libs/ardour/session_directory.cc
+++ b/libs/ardour/session_directory.cc
@@ -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&) {
;
}