Skip to content

Commit

Permalink
Add missing <cstdint> includes for GCC 13
Browse files Browse the repository at this point in the history
Signed-off-by: Sam James <sam@gentoo.org>
  • Loading branch information
thesamesam committed Oct 4, 2022
1 parent 9bf81fd commit 155216c
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/BasicDVIReader.hpp
Expand Up @@ -21,6 +21,8 @@
#ifndef BASICDVIREADER_HPP
#define BASICDVIREADER_HPP

#include <cstdint>

#include "Matrix.hpp"
#include "MessageException.hpp"
#include "StreamReader.hpp"
Expand Down
1 change: 1 addition & 0 deletions src/Bitmap.hpp
Expand Up @@ -21,6 +21,7 @@
#ifndef BITMAP_HPP
#define BITMAP_HPP

#include <cstdint>
#include <ostream>
#include <vector>

Expand Down
1 change: 1 addition & 0 deletions src/CMap.hpp
Expand Up @@ -22,6 +22,7 @@
#define CMAP_HPP

#include <algorithm>
#include <cstdint>
#include <ostream>
#include <vector>
#include "FontEncoding.hpp"
Expand Down
1 change: 1 addition & 0 deletions src/Color.hpp
Expand Up @@ -21,6 +21,7 @@
#ifndef COLOR_HPP
#define COLOR_HPP

#include <cstdint>
#include <string>
#include <valarray>
#include <vector>
Expand Down
1 change: 1 addition & 0 deletions src/DVIReader.hpp
Expand Up @@ -21,6 +21,7 @@
#ifndef DVIREADER_HPP
#define DVIREADER_HPP

#include <cstdint>
#include <limits>
#include <map>
#include <stack>
Expand Down
1 change: 1 addition & 0 deletions src/FileSystem.hpp
Expand Up @@ -21,6 +21,7 @@
#ifndef FILESYSTEM_HPP
#define FILESYSTEM_HPP

#include <cstdint>
#include <string>
#include <vector>

Expand Down
1 change: 1 addition & 0 deletions src/InputBuffer.hpp
Expand Up @@ -22,6 +22,7 @@
#define INPUTBUFFER_HPP

#include <algorithm>
#include <cstdint>
#include <cstring>
#include <istream>
#include <string>
Expand Down
1 change: 1 addition & 0 deletions src/RangeMap.hpp
Expand Up @@ -22,6 +22,7 @@
#define RANGEMAP_HPP

#include <algorithm>
#include <cstdint>
#include <ostream>
#include <vector>

Expand Down
1 change: 1 addition & 0 deletions src/Unicode.hpp
Expand Up @@ -21,6 +21,7 @@
#ifndef UNICODE_HPP
#define UNICODE_HPP

#include <cstdint>
#include <string>

struct Unicode {
Expand Down

0 comments on commit 155216c

Please sign in to comment.