Add missing includes to town_type.h, network_survey.h, pool_type.hpp

pull/564/head
Jonathan G Rennison 11 months ago
parent 0bf41dc1ff
commit c0d47da4a7

@ -11,6 +11,7 @@
#define POOL_TYPE_HPP
#include "enum_type.hpp"
#include <vector>
/** Various types of a pool. */
enum PoolType {

@ -12,6 +12,10 @@
#include <condition_variable>
#include <mutex>
#if defined(__MINGW32__)
#include "../3rdparty/mingw-std-threads/mingw.condition_variable.h"
#include "../3rdparty/mingw-std-threads/mingw.mutex.h"
#endif
#include "core/http.h"
/**

@ -11,6 +11,7 @@
#define TOWN_TYPE_H
#include "core/enum_type.hpp"
#include <vector>
typedef uint16 TownID;
struct Town;

Loading…
Cancel
Save