Merge pull request #1559 from suve/add-missing-cstdint-includes

Add missing <cstdint> includes
fix-squashed-planets
Tomasz Kapuściński 2023-03-11 11:53:05 +01:00 committed by GitHub
commit 1c9c0929da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 0 deletions

View File

@ -19,6 +19,7 @@
#pragma once
#include <cstdint>
#include <iostream>
#include <string>

View File

@ -21,6 +21,8 @@
#include "CBot/CBotInstr/CBotInstr.h"
#include <cstdint>
namespace CBot
{

View File

@ -30,6 +30,7 @@
#include "CBot/CBotExternalCall.h"
#include <cassert>
#include <cstdint>
#include <cstdlib>
#include <cstring>

View File

@ -24,6 +24,7 @@
#include "CBot/CBotEnums.h"
#include "CBot/CBotUtils.h"
#include <cstdint>
#include <string>
namespace CBot

View File

@ -24,6 +24,7 @@
#include "math/vector.h"
#include <array>
#include <cstdint>
#include <memory>
#include <vector>