summaryrefslogtreecommitdiffstats
path: root/src/server
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-02-03 16:30:35 +0000
committerDavid Robillard <d@drobilla.net>2013-02-03 16:30:35 +0000
commit92ebdc5a6aa5c779821374c240a47e01718807a3 (patch)
treebf6fa11348f97e166f62099f17c6daf2b019aadd /src/server
parent9ea596c13c1be7718189dae2eebc7e1e0ee390a5 (diff)
downloadingen-92ebdc5a6aa5c779821374c240a47e01718807a3.tar.gz
ingen-92ebdc5a6aa5c779821374c240a47e01718807a3.tar.bz2
ingen-92ebdc5a6aa5c779821374c240a47e01718807a3.zip
Fix compilation with GCC 4.6.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5038 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server')
-rw-r--r--src/server/ingen_lv2.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/server/ingen_lv2.cpp b/src/server/ingen_lv2.cpp
index e6fab92a..e3bb240a 100644
--- a/src/server/ingen_lv2.cpp
+++ b/src/server/ingen_lv2.cpp
@@ -60,6 +60,8 @@
#define NS_RDF "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
#define NS_RDFS "http://www.w3.org/2000/01/rdf-schema#"
+namespace Ingen {
+
/** Record of a graph in this bundle. */
struct LV2Graph {
LV2Graph(const std::string& u, const std::string& f);
@@ -74,12 +76,11 @@ class Lib {
public:
explicit Lib(const char* bundle_path);
- typedef std::vector< Ingen::SPtr<const LV2Graph> > Graphs;
+ typedef std::vector< SPtr<const LV2Graph> > Graphs;
Graphs graphs;
};
-namespace Ingen {
namespace Server {
class LV2Driver;