Fix a regression on MacOS (#1095)

On apple cland updated as of mid august the compiler complains about std::this_thread::yeld() missing
See also https://github.com/CrowCpp/Crow/pull/1094
This commit is contained in:
Andrea Cocito
2025-09-20 13:13:00 +02:00
committed by GitHub
parent 07bbcd74dd
commit a79123fa33

View File

@@ -1,6 +1,7 @@
#pragma once
#include <array>
#include <memory>
#include <thread>
#include "crow/logging.h"
#include "crow/socket_adaptors.h"
#include "crow/http_request.h"