Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing imports for cstdint #486

Merged
merged 2 commits into from
Dec 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/common/ColourPalette.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include <string>

// Include obscure header file for uint32_t definition
#include <cstdint>

namespace ale {

Expand Down
1 change: 1 addition & 0 deletions src/common/SoundExporter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@

#include <fstream>
#include <vector>
#include <cstdint>


namespace ale {
Expand Down
1 change: 1 addition & 0 deletions src/emucore/MD5.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#define MD5_HXX

#include <string>
#include <cstdint>

namespace ale {
namespace stella {
Expand Down
1 change: 1 addition & 0 deletions src/emucore/Props.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include <sstream>
#include <string>
#include <iostream>
#include <cstdint>

#include "emucore/Props.hxx"

Expand Down
2 changes: 2 additions & 0 deletions src/emucore/PropsSet.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
#ifndef PROPERTIES_SET_HXX
#define PROPERTIES_SET_HXX

#include <cstdint>

namespace ale {
namespace stella {

Expand Down
2 changes: 2 additions & 0 deletions src/emucore/Sound.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
#ifndef SOUND_HXX
#define SOUND_HXX

#include <cstdint>

namespace ale {
namespace stella {

Expand Down
2 changes: 2 additions & 0 deletions src/emucore/Switches.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
#ifndef SWITCHES_HXX
#define SWITCHES_HXX

#include <cstdint>

namespace ale {
namespace stella {

Expand Down