summaryrefslogtreecommitdiffstats
path: root/src/library/library.cpp
diff options
context:
space:
mode:
authorUwe Klotz <uklotz@mixxx.org>2018-02-22 22:58:16 +0100
committerUwe Klotz <uklotz@mixxx.org>2018-02-22 22:58:16 +0100
commit95c8fcb8bb7fa813c833a518b902104bc2de457c (patch)
tree43bde1e5d5d60362db7414e3ac13ab6aebad5536 /src/library/library.cpp
parenta5c15de17a8d35e8af28fa07afdb4ba7da93594f (diff)
Replace throw() with noexcept
Diffstat (limited to 'src/library/library.cpp')
-rw-r--r--src/library/library.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/library.cpp b/src/library/library.cpp
index 7f8b7544c8..6ae2853533 100644
--- a/src/library/library.cpp
+++ b/src/library/library.cpp
@@ -422,7 +422,7 @@ void Library::slotSetTrackTableRowHeight(int rowHeight) {
emit(setTrackTableRowHeight(rowHeight));
}
-void Library::deleteCachedTrack(Track* pTrack) throw() {
+void Library::deleteCachedTrack(Track* pTrack) noexcept {
// It can produce dangerous signal loops if the track is still
// sending signals while being saved! All references to this
// track have been dropped at this point, so there is no need