diff options
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; } |