diff options
author | David Robillard <d@drobilla.net> | 2022-08-18 00:04:37 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-08-18 01:12:58 -0400 |
commit | 1bf1ab5c898f6e6d6e878a716540d0049f5cb206 (patch) | |
tree | c57017ccfd1598e872ede9459a70b396501d7b76 /tests | |
parent | 6bce9e50915d730caa3bd2b60c513fe9915e4b83 (diff) | |
download | ingen-1bf1ab5c898f6e6d6e878a716540d0049f5cb206.tar.gz ingen-1bf1ab5c898f6e6d6e878a716540d0049f5cb206.tar.bz2 ingen-1bf1ab5c898f6e6d6e878a716540d0049f5cb206.zip |
Use auto when declaring iterators
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ingen_test.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/ingen_test.cpp b/tests/ingen_test.cpp index 87e02e9f..f6d3f966 100644 --- a/tests/ingen_test.cpp +++ b/tests/ingen_test.cpp @@ -166,7 +166,8 @@ run(int argc, char** argv) std::string subject_str = fmt("msg%1%", n_events); Sord::URI subject(*world->rdf_world(), subject_str, reinterpret_cast<const char*>(cmds_file_uri.buf)); - Sord::Iter iter = cmds->find(subject, nil, nil); + + auto iter = cmds->find(subject, nil, nil); if (iter.end()) { break; } |