summaryrefslogtreecommitdiffstats
path: root/ingen/World.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-09-29 12:34:41 +0200
committerDavid Robillard <d@drobilla.net>2018-09-29 12:34:41 +0200
commit6244d73850074631ceaaccdf7f755970323f8de2 (patch)
tree46a849e9d527051c8849fc768ea0b0917492ae31 /ingen/World.hpp
parente0e437c0fd970103685db2f1d0c83a9c461ad87f (diff)
downloadingen-6244d73850074631ceaaccdf7f755970323f8de2.tar.gz
ingen-6244d73850074631ceaaccdf7f755970323f8de2.tar.bz2
ingen-6244d73850074631ceaaccdf7f755970323f8de2.zip
Use nullptr
Diffstat (limited to 'ingen/World.hpp')
-rw-r--r--ingen/World.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ingen/World.hpp b/ingen/World.hpp
index fcaf0db5..89dc983b 100644
--- a/ingen/World.hpp
+++ b/ingen/World.hpp
@@ -64,9 +64,9 @@ class URIs;
class INGEN_API World : public Raul::Noncopyable {
public:
/** Construct a new Ingen world.
- * @param map LV2 URID map implementation, or NULL to use internal.
- * @param unmap LV2 URID unmap implementation, or NULL to use internal.
- * @param log LV2 log implementation, or NULL to use internal.
+ * @param map LV2 URID map implementation, or null to use internal.
+ * @param unmap LV2 URID unmap implementation, or null to use internal.
+ * @param log LV2 log implementation, or null to use internal.
*/
World(LV2_URID_Map* map, LV2_URID_Unmap* unmap, LV2_Log_Log* log);