diff options
author | zeuner <github@quidecco.de> | 2018-07-26 21:49:38 +0200 |
---|---|---|
committer | SmallJoker <SmallJoker@users.noreply.github.com> | 2018-07-26 21:49:38 +0200 |
commit | d7d451c647f1fff7983178a9817888f4d0bab695 (patch) | |
tree | d90bec499cde3a78007e85c6745d2a40e08e95fe /src/util | |
parent | 0d55879a1ad29322d586a1acc1bb6de1fa6b3f6d (diff) | |
download | minetest-d7d451c647f1fff7983178a9817888f4d0bab695.tar.gz minetest-d7d451c647f1fff7983178a9817888f4d0bab695.tar.bz2 minetest-d7d451c647f1fff7983178a9817888f4d0bab695.zip |
Fix build on gcc 5.0 (#7586)
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/srp.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/util/srp.cpp b/src/util/srp.cpp index a3452e022..d825f0ebc 100644 --- a/src/util/srp.cpp +++ b/src/util/srp.cpp @@ -27,6 +27,9 @@ */ // clang-format off + +#include <cstddef> + #ifdef WIN32 #include <windows.h> #include <wincrypt.h> |