From 92ebdc5a6aa5c779821374c240a47e01718807a3 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 3 Feb 2013 16:30:35 +0000 Subject: Fix compilation with GCC 4.6. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5038 a436a847-0d15-0410-975c-d299462d15a1 --- src/server/ingen_lv2.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/server') 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 > Graphs; + typedef std::vector< SPtr > Graphs; Graphs graphs; }; -namespace Ingen { namespace Server { class LV2Driver; -- cgit v1.2.1