Update common.cpp

add #include <thread> as it was in earlier versions of common.cpp. 
Without  this under Windows (gcc  mingw) didn't work ctl+c in cmd.
This commit is contained in:
magicse 2025-02-03 00:18:43 +02:00 committed by GitHub
parent 396856b400
commit 2ed9941ecb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -57,6 +57,7 @@
#if defined(LLAMA_USE_CURL)
#include <curl/curl.h>
#include <curl/easy.h>
#include <thread>
#include <future>
#endif