summaryrefslogtreecommitdiff
path: root/libs/ardour/location.cc
diff options
context:
space:
mode:
authorSakari Bergen <sakari.bergen@beatwaves.net>2009-03-07 09:42:39 +0000
committerSakari Bergen <sakari.bergen@beatwaves.net>2009-03-07 09:42:39 +0000
commite09c51251f1742ac5c61966b5dd8c5f61c567f69 (patch)
treebcdaebca662905230391efdf6726cd25dde050b0 /libs/ardour/location.cc
parentbb20bcc7b6af0e63fc2a9b909b27765ffe5014e1 (diff)
Fix compiler warnings
git-svn-id: svn://localhost/ardour2/branches/3.0@4744 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/location.cc')
-rw-r--r--libs/ardour/location.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/location.cc b/libs/ardour/location.cc
index ca0a56972e..dd32da2628 100644
--- a/libs/ardour/location.cc
+++ b/libs/ardour/location.cc
@@ -43,7 +43,8 @@ using namespace sigc;
using namespace PBD;
Location::Location (const Location& other)
- : _name (other._name),
+ : StatefulDestructible(),
+ _name (other._name),
_start (other._start),
_end (other._end),
_flags (other._flags)