summaryrefslogtreecommitdiffstats
path: root/src/gui/RDFS.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/RDFS.hpp')
-rw-r--r--src/gui/RDFS.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/RDFS.hpp b/src/gui/RDFS.hpp
index 4e9a8ab1..a8d161cb 100644
--- a/src/gui/RDFS.hpp
+++ b/src/gui/RDFS.hpp
@@ -36,10 +36,10 @@ namespace gui {
namespace rdfs {
/** Set of URIs. */
-typedef std::set<URI> URISet;
+using URISet = std::set<URI>;
/** Label => Resource map. */
-typedef std::map<std::string, URI> Objects;
+using Objects = std::map<std::string, URI>;
/** Return the label of `node`. */
std::string label(World& world, const LilvNode* node);