Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix build on gcc 5.0 (#7586)
  • Loading branch information
zeuner authored and SmallJoker committed Jul 26, 2018
1 parent 0d55879 commit d7d451c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/mapgen/mg_ore.cpp
Expand Up @@ -24,6 +24,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "map.h"
#include "log.h"
#include "util/numeric.h"
#include <cmath>
#include <algorithm>


Expand Down
1 change: 1 addition & 0 deletions src/network/connection.cpp
Expand Up @@ -20,6 +20,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include <iomanip>
#include <cerrno>
#include <algorithm>
#include <cmath>
#include "connection.h"
#include "serialization.h"
#include "log.h"
Expand Down
3 changes: 3 additions & 0 deletions src/util/srp.cpp
Expand Up @@ -27,6 +27,9 @@
*/

// clang-format off

#include <cstddef>

#ifdef WIN32
#include <windows.h>
#include <wincrypt.h>
Expand Down

0 comments on commit d7d451c

Please sign in to comment.