summaryrefslogtreecommitdiffstats
path: root/src/gui/RDFS.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-08-02 15:23:19 +0200
committerDavid Robillard <d@drobilla.net>2020-08-02 15:23:19 +0200
commitbdbdf42f3fe990c713c5437724db39274c387eee (patch)
tree7f921a04fd580da6bcb6fc8975fa2aebfcd93e0f /src/gui/RDFS.cpp
parentec0b87a18623c17c16f6a648fcf277abe14142b7 (diff)
downloadingen-bdbdf42f3fe990c713c5437724db39274c387eee.tar.gz
ingen-bdbdf42f3fe990c713c5437724db39274c387eee.tar.bz2
ingen-bdbdf42f3fe990c713c5437724db39274c387eee.zip
Remove std::shared_ptr alias
Diffstat (limited to 'src/gui/RDFS.cpp')
-rw-r--r--src/gui/RDFS.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/RDFS.cpp b/src/gui/RDFS.cpp
index 1091c443..5bee419c 100644
--- a/src/gui/RDFS.cpp
+++ b/src/gui/RDFS.cpp
@@ -115,7 +115,7 @@ datatypes(World& world, URISet& types, bool super)
}
URISet
-types(World& world, SPtr<const client::ObjectModel> model)
+types(World& world, std::shared_ptr<const client::ObjectModel> model)
{
using PropIter = Properties::const_iterator;
using PropRange = std::pair<PropIter, PropIter>;
@@ -145,7 +145,7 @@ types(World& world, SPtr<const client::ObjectModel> model)
}
URISet
-properties(World& world, SPtr<const client::ObjectModel> model)
+properties(World& world, std::shared_ptr<const client::ObjectModel> model)
{
URISet properties;
URISet types = rdfs::types(world, model);