Merge pull request #9 from scamdotnet/clang15-fix

Fix compiling on clang 15+
This commit is contained in:
Ariel Abreu 2023-04-21 18:13:29 -04:00 committed by GitHub
commit d570d86c3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -23,6 +23,7 @@
#include <stdexcept>
#include <new>
#include <mutex>
#include <system_error>
DarlingServer::Address::Address() {
_address.sun_family = AF_UNIX;

View File

@ -22,6 +22,7 @@
#include <unistd.h>
#include <sys/mman.h>
#include <assert.h>
#include <system_error>
#if DSERVER_ASAN
#include <sanitizer/asan_interface.h>