Fixed missing include

pull/991/head
AlexandreRouma 2023-02-03 04:23:43 +01:00 zatwierdzone przez GitHub
rodzic 7758c40bd7
commit bbf0c17cb8
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -2,6 +2,7 @@
#include <utils/net.h>
#include <dsp/stream.h>
#include <dsp/types.h>
#include <thread>
namespace rtltcp {
#pragma pack(push, 1)
@ -41,4 +42,4 @@ namespace rtltcp {
};
std::shared_ptr<Client> connect(dsp::stream<dsp::complex_t>* stream, std::string host, int port = 1234);
}
}