summaryrefslogtreecommitdiffstats
path: root/src/URIMap.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-12-25 13:59:47 -0500
committerDavid Robillard <d@drobilla.net>2017-12-25 16:26:13 -0500
commitd6a9571641bcb34acb3521feb08eea33195fd9ca (patch)
tree5c28e2800d829b7b1896e2fcbe3f8870b88e039d /src/URIMap.cpp
parent25177612b20f7d3ebd4138fed9cd9acffec7e756 (diff)
downloadingen-d6a9571641bcb34acb3521feb08eea33195fd9ca.tar.gz
ingen-d6a9571641bcb34acb3521feb08eea33195fd9ca.tar.bz2
ingen-d6a9571641bcb34acb3521feb08eea33195fd9ca.zip
Use nullptr
Diffstat (limited to 'src/URIMap.cpp')
-rw-r--r--src/URIMap.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/URIMap.cpp b/src/URIMap.cpp
index b50fd4b7..45debcee 100644
--- a/src/URIMap.cpp
+++ b/src/URIMap.cpp
@@ -42,7 +42,7 @@ URIMap::URIDMapFeature::URIDMapFeature(URIMap* map,
urid_map = *impl;
} else {
urid_map.map = default_map;
- urid_map.handle = NULL;
+ urid_map.handle = nullptr;
}
}
@@ -71,7 +71,7 @@ URIMap::URIDUnmapFeature::URIDUnmapFeature(URIMap* map,
urid_unmap = *impl;
} else {
urid_unmap.unmap = default_unmap;
- urid_unmap.handle = NULL;
+ urid_unmap.handle = nullptr;
}
}