diff options
author | David Robillard <d@drobilla.net> | 2018-09-29 12:34:41 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-09-29 12:34:41 +0200 |
commit | 6244d73850074631ceaaccdf7f755970323f8de2 (patch) | |
tree | 46a849e9d527051c8849fc768ea0b0917492ae31 /tests | |
parent | e0e437c0fd970103685db2f1d0c83a9c461ad87f (diff) | |
download | ingen-6244d73850074631ceaaccdf7f755970323f8de2.tar.gz ingen-6244d73850074631ceaaccdf7f755970323f8de2.tar.bz2 ingen-6244d73850074631ceaaccdf7f755970323f8de2.zip |
Use nullptr
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ingen_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ingen_test.cpp b/tests/ingen_test.cpp index 080dd596..f0e92d30 100644 --- a/tests/ingen_test.cpp +++ b/tests/ingen_test.cpp @@ -168,7 +168,7 @@ main(int argc, char** argv) sratom, &world->uri_map().urid_unmap_feature()->urid_unmap, (const char*)cmds_file_uri.buf, - NULL, NULL, atom->type, atom->size, LV2_ATOM_BODY(atom)) << endl; + nullptr, nullptr, atom->type, atom->size, LV2_ATOM_BODY(atom)) << endl; #endif if (!atom_reader.write(out.atom(), n_events + 1)) { |