From d1706c4df44de6f2a26a49ec3dee2f7c202fde02 Mon Sep 17 00:00:00 2001 From: Paul Fd Date: Tue, 10 Mar 2020 18:50:31 +0100 Subject: [PATCH] chrono literals --- 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 a07776c4..7aee82d2 100644 --- a/clients/jack_client.cpp +++ b/clients/jack_client.cpp @@ -37,7 +37,6 @@ #include #include #include -using namespace std::literals; static jack_port_t* midiInputPort; static jack_port_t* outputPort1; @@ -290,7 +289,7 @@ int main(int argc, char** argv) std::cout << "Allocated buffers: " << synth.getAllocatedBuffers() << '\n'; std::cout << "Total size: " << synth.getAllocatedBytes() << '\n'; #endif - std::this_thread::sleep_for(2s); + std::this_thread::sleep_for(std::chrono::seconds(2)); } std::cout << "Closing..." << '\n';