From f0e33dd09a390ca946e95a6f55fea397dca0ca1f Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 2 Jan 2021 18:17:04 +0100 Subject: Update for latest raul --- tests/ingen_test.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/ingen_test.cpp') diff --git a/tests/ingen_test.cpp b/tests/ingen_test.cpp index eaa6a0ab..87e02e9f 100644 --- a/tests/ingen_test.cpp +++ b/tests/ingen_test.cpp @@ -194,7 +194,7 @@ run(int argc, char** argv) delete cmds; // Save resulting graph - auto r = world->store()->find(Raul::Path("/")); + auto r = world->store()->find(raul::Path("/")); const std::string base = run_path.stem(); const std::string out_name = base.substr(0, base.find('.')) + ".out.ingen"; const FilePath out_path = filesystem::current_path() / out_name; @@ -207,7 +207,7 @@ run(int argc, char** argv) } // Save completely undone graph - r = world->store()->find(Raul::Path("/")); + r = world->store()->find(raul::Path("/")); const std::string undo_name = base.substr(0, base.find('.')) + ".undo.ingen"; const FilePath undo_path = filesystem::current_path() / undo_name; world->serialiser()->write_bundle(r->second, URI(undo_path)); @@ -219,7 +219,7 @@ run(int argc, char** argv) } // Save completely redone graph - r = world->store()->find(Raul::Path("/")); + r = world->store()->find(raul::Path("/")); const std::string redo_name = base.substr(0, base.find('.')) + ".redo.ingen"; const FilePath redo_path = filesystem::current_path() / redo_name; world->serialiser()->write_bundle(r->second, URI(redo_path)); -- cgit v1.2.1