Skip to content

Commit

Permalink
Add missing imports for cstdint (#486)
Browse files Browse the repository at this point in the history
  • Loading branch information
benallard authored Dec 4, 2023
1 parent d2c22f5 commit ebd64c0
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 0 deletions.
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

0 comments on commit ebd64c0

Please sign in to comment.