From 056f71f24cefaf88f2a93714c6678c03ed5f1e0e Mon Sep 17 00:00:00 2001
From: zhangmeng <775834166@qq.com>
Date: 星期五, 02 七月 2021 16:54:33 +0800
Subject: [PATCH] fixed to adapt gcc-5.4 & glibc-2.25
---
src/robust.cpp | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletions(-)
diff --git a/src/robust.cpp b/src/robust.cpp
index 015f97a..b4e0613 100644
--- a/src/robust.cpp
+++ b/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
{
--
Gitblit v1.8.0