Fix include paths

This commit is contained in:
gabime 2024-01-14 12:20:05 +02:00
parent 9294adb335
commit d61f0a5d5e
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
#include "../details/null_mutex.h"
#include "./base_sink.h"
#ifdef _WIN32
#include "../details/tcp_client-windows.h"
#include "../details/tcp_client_windows.h"
#else
#include "../details/tcp_client_unix.h"
#endif

View File

@ -7,7 +7,7 @@
#include "../details/null_mutex.h"
#include "./base_sink.h"
#ifdef _WIN32
#include "../details/udp_client-windows.h"
#include "../details/udp_client_windows.h"
#else
#include "../details/udp_client_unix.h"
#endif