zhangmeng
2021-07-20 a92f880b2f9e8d51d6d57f93113bd534b2178f5f
src/robust.cpp
@@ -16,9 +16,16 @@
 * =====================================================================================
 */
#include "robust.h"
#include <chrono>
#include <thread>
using namespace std::chrono;
using namespace std::chrono_literals;
namespace
{
void yield() { std::this_thread::sleep_for(10us); }
} // namespace
namespace robust
{