summaryrefslogtreecommitdiffstats
path: root/src/server/BufferFactory.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-01-27 16:15:21 +0000
committerDavid Robillard <d@drobilla.net>2013-01-27 16:15:21 +0000
commitd349a2eb5934eb7505ae167f68f7772d55623628 (patch)
tree3cb27099da23a51a08d7ca6a5e8c08179d85c1b7 /src/server/BufferFactory.cpp
parent4c58728d246f35a01bb166d8d7821f0af032fd0f (diff)
downloadingen-d349a2eb5934eb7505ae167f68f7772d55623628.tar.gz
ingen-d349a2eb5934eb7505ae167f68f7772d55623628.tar.bz2
ingen-d349a2eb5934eb7505ae167f68f7772d55623628.zip
Rename BufferFactory::get() to BufferFactory::get_buffer() for grepability.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5013 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/BufferFactory.cpp')
-rw-r--r--src/server/BufferFactory.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/server/BufferFactory.cpp b/src/server/BufferFactory.cpp
index b15e0bb7..6390a36b 100644
--- a/src/server/BufferFactory.cpp
+++ b/src/server/BufferFactory.cpp
@@ -96,10 +96,10 @@ BufferFactory::default_size(LV2_URID type) const
}
BufferRef
-BufferFactory::get(LV2_URID type,
- uint32_t capacity,
- bool real_time,
- bool force_create)
+BufferFactory::get_buffer(LV2_URID type,
+ uint32_t capacity,
+ bool real_time,
+ bool force_create)
{
std::atomic<Buffer*>& head_ptr = free_list(type);
Buffer* try_head = NULL;