Linux build fix: strncpy needs <string.h>

This commit is contained in:
Benjamin Sergeant 2019-05-16 22:21:15 -07:00
parent 51fa147b99
commit 126a91dfec

View File

@ -21,6 +21,7 @@
#include <cstdint>
#include <cstddef>
#include <string>
#include <string.h>
class WebSocketHandshakeKeyGen {
template <int N, typename T>