aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/Updates.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-01-13 01:05:24 +0000
committerDavid Robillard <d@drobilla.net>2013-01-13 01:05:24 +0000
commit8941b58c8737d948f4c925955506da666ceb60ed (patch)
treea22d873e5d8a5033c4a9a09310a34e8ff1d3530c /src/engine/Updates.cpp
parent301b5e158ea31a7d2918c5d257e114a9b92745ed (diff)
downloadmachina-8941b58c8737d948f4c925955506da666ceb60ed.tar.gz
machina-8941b58c8737d948f4c925955506da666ceb60ed.tar.bz2
machina-8941b58c8737d948f4c925955506da666ceb60ed.zip
Remove pointless typedef.
git-svn-id: http://svn.drobilla.net/lad/trunk/machina@4944 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/Updates.cpp')
-rw-r--r--src/engine/Updates.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/engine/Updates.cpp b/src/engine/Updates.cpp
index 275ca2b..2775292 100644
--- a/src/engine/Updates.cpp
+++ b/src/engine/Updates.cpp
@@ -25,10 +25,10 @@
namespace Machina {
void
-write_set(SPtr<UpdateBuffer> buf,
- uint64_t subject,
- URIInt key,
- const Raul::Atom& value)
+write_set(SPtr<Raul::RingBuffer> buf,
+ uint64_t subject,
+ URIInt key,
+ const Raul::Atom& value)
{
const uint32_t update_type = UPDATE_SET;
buf->write(sizeof(update_type), &update_type);
@@ -41,10 +41,10 @@ write_set(SPtr<UpdateBuffer> buf,
}
uint32_t
-read_set(SPtr<UpdateBuffer> buf,
- uint64_t* subject,
- URIInt* key,
- Raul::Atom* value)
+read_set(SPtr<Raul::RingBuffer> buf,
+ uint64_t* subject,
+ URIInt* key,
+ Raul::Atom* value)
{
uint32_t update_type;
buf->read(sizeof(update_type), &update_type);