summaryrefslogtreecommitdiffstats
path: root/src/server/LV2Plugin.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-28 18:19:28 +0000
committerDavid Robillard <d@drobilla.net>2011-04-28 18:19:28 +0000
commit30b375cc910a2ce70d869cfc3496a0d06b7e1775 (patch)
tree8e2ab572b40059f40e5ecb88dc43e7728858be54 /src/server/LV2Plugin.cpp
parentf936a6da1f4885db54365d81ee5959e84d359e85 (diff)
downloadingen-30b375cc910a2ce70d869cfc3496a0d06b7e1775.tar.gz
ingen-30b375cc910a2ce70d869cfc3496a0d06b7e1775.tar.bz2
ingen-30b375cc910a2ce70d869cfc3496a0d06b7e1775.zip
Improve RingBuffer implementation.
Previous implementation was broken when written to full capacity, and this version is significantly faster as well. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3213 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/LV2Plugin.cpp')
-rw-r--r--src/server/LV2Plugin.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/server/LV2Plugin.cpp b/src/server/LV2Plugin.cpp
index ed25d1ac..703a8616 100644
--- a/src/server/LV2Plugin.cpp
+++ b/src/server/LV2Plugin.cpp
@@ -19,6 +19,8 @@
#include <string>
#include <glibmm.h>
+#include "raul/log.hpp"
+
#include "sord/sordmm.hpp"
#include "shared/LV2URIMap.hpp"
@@ -98,7 +100,7 @@ LV2Plugin::library_path() const
if (v) {
_library_path = slv2_uri_to_path(slv2_value_as_uri(v));
} else {
- warn << uri() << " has no library path" << endl;
+ Raul::warn << uri() << " has no library path" << std::endl;
return empty_string;
}
}