fix build: fix for freebsd (#2590)

The build error was:
  include/spdlog/details/tcp_client.h:106:31: error: use of undeclared identifier 'IPPROTO_TCP'
This commit is contained in:
Vasiliy Kulikov
2023-01-01 00:52:46 +03:00
committed by GitHub
parent a4e9917575
commit 3c93f7690a

View File

@@ -16,6 +16,7 @@
#include <unistd.h>
#include <netdb.h>
#include <netinet/tcp.h>
#include <netinet/in.h>
#include <string>