summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/buffer.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-12-03 23:15:53 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-12-03 23:15:53 +0000
commit38c24cefbad1822f08fe4c417286ecf1ff7a8867 (patch)
tree0dcefd618f60d574522cb1863ce3b06c690bb098 /libs/ardour/ardour/buffer.h
parent1596ab40ead7f4155b7259379ce0fb2b492fa821 (diff)
type tweaks and casts following the nframes_t expulsion
git-svn-id: svn://localhost/ardour2/branches/3.0@8175 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/buffer.h')
-rw-r--r--libs/ardour/ardour/buffer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/ardour/ardour/buffer.h b/libs/ardour/ardour/buffer.h
index 5b76aafca6..4775f24e95 100644
--- a/libs/ardour/ardour/buffer.h
+++ b/libs/ardour/ardour/buffer.h
@@ -84,10 +84,10 @@ public:
: _type(type), _capacity(capacity), _size(0), _silent(true)
{}
- DataType _type;
- size_t _capacity;
- size_t _size;
- bool _silent;
+ DataType _type;
+ pframes_t _capacity;
+ pframes_t _size;
+ bool _silent;
};