Merge branch 'master' of https://github.com/sogou/workflow into nossl

This commit is contained in:
Xie Han
2024-12-13 21:31:07 +08:00
2 changed files with 4 additions and 2 deletions

View File

@@ -23,7 +23,6 @@
#include <sys/types.h>
#include <sys/uio.h>
#include <time.h>
#include <stddef.h>
#include <stdint.h>
#include <utility>
#include <functional>
@@ -423,6 +422,10 @@ public:
return task;
}
private:
/* Some compilers don't declare 'nullptr_t' although required by C++11. */
using nullptr_t = std::nullptr_t;
public:
/* The following functions are for overload resolution only. */

View File

@@ -23,7 +23,6 @@
#include <errno.h>
#include <time.h>
#include <netdb.h>
#include <stddef.h>
#include <stdio.h>
#include <string>
#include <functional>