summaryrefslogtreecommitdiffstats
path: root/src/URIs.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-08-02 12:19:54 +0200
committerDavid Robillard <d@drobilla.net>2020-08-02 12:51:11 +0200
commit8123b3ff3aee3a161723c06a0d88141a0e8b7841 (patch)
tree82401219c53b678fcb3eab92904428e7b570a691 /src/URIs.cpp
parent8e0ab708ccb604c3224da2386dde609cb30de2b7 (diff)
downloadingen-8123b3ff3aee3a161723c06a0d88141a0e8b7841.tar.gz
ingen-8123b3ff3aee3a161723c06a0d88141a0e8b7841.tar.bz2
ingen-8123b3ff3aee3a161723c06a0d88141a0e8b7841.zip
Fix shadow warnings
Diffstat (limited to 'src/URIs.cpp')
-rw-r--r--src/URIs.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/URIs.cpp b/src/URIs.cpp
index f0252e73..a2ad6819 100644
--- a/src/URIs.cpp
+++ b/src/URIs.cpp
@@ -36,13 +36,13 @@
namespace ingen {
-URIs::Quark::Quark(Forge& forge,
+URIs::Quark::Quark(Forge& ingen_forge,
URIMap*,
LilvWorld* lworld,
const char* str)
: URI(str)
- , _urid_atom(forge.make_urid(URI(str)))
- , _uri_atom(forge.alloc_uri(str))
+ , _urid_atom(ingen_forge.make_urid(URI(str)))
+ , _uri_atom(ingen_forge.alloc_uri(str))
, _lilv_node(lilv_new_uri(lworld, str))
{}
@@ -61,8 +61,8 @@ URIs::Quark::~Quark()
#define NS_RDF "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
#define NS_RDFS "http://www.w3.org/2000/01/rdf-schema#"
-URIs::URIs(Forge& forge, URIMap* map, LilvWorld* lworld)
- : forge(forge)
+URIs::URIs(Forge& ingen_forge, URIMap* map, LilvWorld* lworld)
+ : forge(ingen_forge)
, atom_AtomPort (forge, map, lworld, LV2_ATOM__AtomPort)
, atom_Bool (forge, map, lworld, LV2_ATOM__Bool)
, atom_Chunk (forge, map, lworld, LV2_ATOM__Chunk)