summaryrefslogtreecommitdiffstats
path: root/src/gui/RDFS.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/RDFS.cpp')
-rw-r--r--src/gui/RDFS.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/RDFS.cpp b/src/gui/RDFS.cpp
index 4dd21e28..1a5e190a 100644
--- a/src/gui/RDFS.cpp
+++ b/src/gui/RDFS.cpp
@@ -122,7 +122,7 @@ types(World* world, SPtr<const Client::ObjectModel> model)
URISet types;
types.insert(Raul::URI(LILV_NS_RDFS "Resource"));
PropRange range = model->properties().equal_range(world->uris().rdf_type);
- for (PropIter t = range.first; t != range.second; ++t) {
+ for (auto t = range.first; t != range.second; ++t) {
if (t->second.type() == world->forge().URI ||
t->second.type() == world->forge().URID) {
const Raul::URI type(world->forge().str(t->second, false));