From de757e0964cb83356cc6d54cb74746885db18c85 Mon Sep 17 00:00:00 2001 From: paulfd Date: Tue, 17 Sep 2019 14:52:27 +0200 Subject: [PATCH] Implicit construction in the jack client --- clients/jack_client.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/clients/jack_client.cpp b/clients/jack_client.cpp index f1b90e9d..ed001020 100644 --- a/clients/jack_client.cpp +++ b/clients/jack_client.cpp @@ -168,8 +168,7 @@ int main(int argc, char** argv) std::cout << '\n'; sfz::Synth synth; - std::filesystem::path filename { filesToParse[0] }; - synth.loadSfzFile(filename); + synth.loadSfzFile(filesToParse[0]); std::cout << "==========" << '\n'; std::cout << "Total:" << '\n'; std::cout << "\tMasters: " << synth.getNumMasters() << '\n';