1
0
mirror of https://github.com/gabime/spdlog.git synced 2025-04-01 02:42:41 +08:00

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 "../details/null_mutex.h"
#include "./base_sink.h" #include "./base_sink.h"
#ifdef _WIN32 #ifdef _WIN32
#include "../details/tcp_client-windows.h" #include "../details/tcp_client_windows.h"
#else #else
#include "../details/tcp_client_unix.h" #include "../details/tcp_client_unix.h"
#endif #endif

View File

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