summaryrefslogtreecommitdiffstats
path: root/lilv
diff options
context:
space:
mode:
Diffstat (limited to 'lilv')
-rw-r--r--lilv/lilvmm.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lilv/lilvmm.hpp b/lilv/lilvmm.hpp
index cf719dd..4a90e6d 100644
--- a/lilv/lilvmm.hpp
+++ b/lilv/lilvmm.hpp
@@ -269,7 +269,7 @@ struct Instance {
LILV_DEPRECATED
inline Instance(Plugin plugin, double sample_rate) {
- me = lilv_plugin_instantiate(plugin, sample_rate, NULL);
+ me = lilv_plugin_instantiate(plugin, sample_rate, nullptr);
}
LILV_DEPRECATED inline Instance(Plugin plugin,
@@ -284,7 +284,7 @@ struct Instance {
LilvInstance* me = lilv_plugin_instantiate(
plugin, sample_rate, features);
- return me ? new Instance(me) : NULL;
+ return me ? new Instance(me) : nullptr;
}
LILV_WRAP_CONVERSION(LilvInstance);