chrono literals

This commit is contained in:
Paul Fd 2020-03-10 18:50:31 +01:00
parent 29aa231960
commit d1706c4df4

View file

@ -37,7 +37,6 @@
#include <string_view>
#include <chrono>
#include <thread>
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';