From c5eb1148b99cf88555c0a516e1218bdb74ab0080 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 1 May 2007 04:01:04 +0000 Subject: Converted Raul (and thus Ingen and Machina) to use Redland over Raptor/Rasqal independently. Fixed patch loading for Ingen (local only, still something wrong with remote...). git-svn-id: http://svn.drobilla.net/lad/raul@486 a436a847-0d15-0410-975c-d299462d15a1 --- src/Namespaces.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Namespaces.cpp') diff --git a/src/Namespaces.cpp b/src/Namespaces.cpp index 2f3dd99..5bdb3b9 100644 --- a/src/Namespaces.cpp +++ b/src/Namespaces.cpp @@ -26,9 +26,9 @@ namespace Raul { * Namespaces, @a uri will be returned unmodified. */ std::string -Namespaces::qualify(std::string uri) +Namespaces::qualify(std::string uri) const { - for (iterator i = begin(); i != end(); ++i) { + for (const_iterator i = begin(); i != end(); ++i) { size_t ns_len = i->second.length(); if (uri.substr(0, ns_len) == i->second) -- cgit v1.2.1