main.cpp 282 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 #include <chrono> #include <stdio.h> #include <thread> int main(int argc, char const *argv[]) { static bool done = false; while (!done) { std::this_thread::sleep_for(std::chrono::milliseconds{100}); } printf("Set a breakpoint here.\n"); return 0; }