Add various missing includes

This commit is contained in:
Jonathan G Rennison
2024-05-31 23:09:19 +01:00
parent f09f412c43
commit 7997430688
5 changed files with 5 additions and 0 deletions

View File

@@ -13,6 +13,7 @@
#include "date_type.h"
#include "settings_type.h"
#include "strings_type.h"
#include <array>
static const int CF_NOEURO = 0; ///< Currency never switches to the Euro (as far as known).
static const int CF_ISEURO = 1; ///< Currency _is_ the Euro.

View File

@@ -12,6 +12,7 @@
#include "core/overflowsafe_type.hpp"
#include "core/enum_type.hpp"
#include <array>
typedef OverflowSafeInt64 Money;

View File

@@ -13,6 +13,7 @@
#include "strings_type.h"
#include "company_type.h"
#include "settings_type.h"
#include <array>
struct HighScore {
std::string name; ///< The name of the companyy and president.

View File

@@ -11,6 +11,7 @@
#define NETWORK_CRYPTO_INTERNAL_H
#include "network_crypto.h"
#include <array>
/** The number of bytes the public and secret keys are in X25519. */
constexpr size_t X25519_KEY_SIZE = 32;

View File

@@ -19,6 +19,7 @@
#include "table/strings.h"
#include "company_func.h"
#include "core/tinystring_type.hpp"
#include <array>
#include <list>
#include <memory>