summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/latent.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-07-15 00:50:43 +0000
committerCarl Hetherington <carl@carlh.net>2011-07-15 00:50:43 +0000
commite2b8d4214010e623c2f476d34ba6218e5c503f1a (patch)
tree755e81a147cb2ee13a71201ddb3f1a17d9e3cf12 /libs/ardour/ardour/latent.h
parent9d57b87999e11df42b42dc64f78e384ad0cf8ea4 (diff)
Remove unused _own_latency member from Latent.
git-svn-id: svn://localhost/ardour2/branches/3.0@9881 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/latent.h')
-rw-r--r--libs/ardour/ardour/latent.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/libs/ardour/ardour/latent.h b/libs/ardour/ardour/latent.h
index f24d28efac..c6e81c17a2 100644
--- a/libs/ardour/ardour/latent.h
+++ b/libs/ardour/ardour/latent.h
@@ -26,7 +26,7 @@ namespace ARDOUR {
class Latent {
public:
- Latent() : _own_latency (0), _user_latency (0) {}
+ Latent() : _user_latency (0) {}
virtual ~Latent() {}
virtual framecnt_t signal_latency() const = 0;
@@ -40,11 +40,9 @@ class Latent {
}
}
- virtual void set_latency_delay (framecnt_t val) { _own_latency = val; }
virtual void set_user_latency (framecnt_t val) { _user_latency = val; }
protected:
- framecnt_t _own_latency;
framecnt_t _user_latency;
};