summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-12-12 16:06:46 +0100
committerRobin Gareus <robin@gareus.org>2019-12-12 16:06:46 +0100
commitf171e88775fb6e2200e0aa8396e1a3216ef5f21d (patch)
tree58358fe8b48c96a22174e3e2ccd079dc1b18c978 /libs/ardour/ardour
parent87f4a4afff6c639ddaab2f10dadca72b2ea57704 (diff)
BOOST_SP_NOEXCEPT is n/a in boost 1.62
Even though the method that is overridden (shared_ptr<t>::operator=), has that signature in modern boost, it's of no real significance for the case at hand (ExportChannel, ExportTimespan)
Diffstat (limited to 'libs/ardour/ardour')
-rw-r--r--libs/ardour/ardour/comparable_shared_ptr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/ardour/comparable_shared_ptr.h b/libs/ardour/ardour/comparable_shared_ptr.h
index a49481fe08..d896d22eb7 100644
--- a/libs/ardour/ardour/comparable_shared_ptr.h
+++ b/libs/ardour/ardour/comparable_shared_ptr.h
@@ -42,7 +42,7 @@ class /*LIBARDOUR_API*/ ComparableSharedPtr : public boost::shared_ptr<T>
ComparableSharedPtr (ComparableSharedPtr const & r) : boost::shared_ptr<T> (r) {}
- ComparableSharedPtr& operator=(ComparableSharedPtr const& r) BOOST_SP_NOEXCEPT {
+ ComparableSharedPtr& operator=(ComparableSharedPtr const& r) {
boost::shared_ptr<T>(r).swap(*this);
return *this;
}