From 6244d73850074631ceaaccdf7f755970323f8de2 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 29 Sep 2018 12:34:41 +0200 Subject: Use nullptr --- src/ingen/ingen.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/ingen/ingen.cpp') diff --git a/src/ingen/ingen.cpp b/src/ingen/ingen.cpp index bf18f0dd..9d099a43 100644 --- a/src/ingen/ingen.cpp +++ b/src/ingen/ingen.cpp @@ -92,7 +92,8 @@ main(int argc, char** argv) // Create world try { - world = unique_ptr(new ingen::World(nullptr, NULL, NULL)); + world = unique_ptr( + new ingen::World(nullptr, nullptr, nullptr)); world->load_configuration(argc, argv); if (argc <= 1) { world->conf().print_usage("ingen", cout); -- cgit v1.2.1