Skip to content

Commit

Permalink
fix case of included header file
Browse files Browse the repository at this point in the history
case mismatch was causing cmake and ccache to never find the dependency
and resulted in always rebuilding the file, even if nothing had changed
  • Loading branch information
myk002 committed Sep 5, 2023
1 parent 512f3e9 commit 8cf9493
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SimpleSocket.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
#ifdef _WIN32
#include <io.h>
#include <winsock2.h>
#include <Ws2tcpip.h>
#include <ws2tcpip.h>

#define IPTOS_LOWDELAY 0x10

Expand Down

0 comments on commit 8cf9493

Please sign in to comment.