Fix udp sink on Windows

This commit is contained in:
Chris Love
2021-08-26 06:35:28 -07:00
parent 410e641dff
commit a15f5137ef
3 changed files with 15 additions and 6 deletions

View File

@@ -7,7 +7,7 @@
#include <spdlog/sinks/base_sink.h>
#include <spdlog/details/null_mutex.h>
#ifdef _WIN32
# include <spdlog/details/udp_client_windows.h>
# include <spdlog/details/udp_client-windows.h>
#else
# include <spdlog/details/udp_client.h>
#endif