Skip to content

Commit

Permalink
Fix missing <cstdint> header for gcc 13
Browse files Browse the repository at this point in the history
  • Loading branch information
topazus committed Apr 7, 2023
1 parent 8c5d2e3 commit a32f9a0
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 0 deletions.
2 changes: 2 additions & 0 deletions include/LIEF/ART/Header.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
*/
#ifndef LIEF_ART_HEADER_H_
#define LIEF_ART_HEADER_H_

#include <array>
#include <cstdint>

#include "LIEF/ART/types.hpp"
#include "LIEF/ART/enums.hpp"
Expand Down
1 change: 1 addition & 0 deletions include/LIEF/Abstract/Symbol.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#ifndef LIEF_ABSTRACT_SYMBOLS_H_
#define LIEF_ABSTRACT_SYMBOLS_H_

#include <cstdint>
#include <string>

#include "LIEF/Object.hpp"
Expand Down
2 changes: 2 additions & 0 deletions include/LIEF/DEX/CodeInfo.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
#ifndef LIEF_DEX_CODE_INFO_H_
#define LIEF_DEX_CODE_INFO_H_

#include <cstdint>
#include <ostream>

#include "LIEF/visibility.h"
#include "LIEF/Object.hpp"

Expand Down
1 change: 1 addition & 0 deletions include/LIEF/DEX/MapItem.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#ifndef LIEF_MAP_ITEM_H_
#define LIEF_MAP_ITEM_H_

#include <cstdint>
#include <ostream>

#include "LIEF/visibility.h"
Expand Down
1 change: 1 addition & 0 deletions include/LIEF/OAT/DexFile.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#ifndef LIEF_OAT_DEXFILE_H_
#define LIEF_OAT_DEXFILE_H_

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

Expand Down
2 changes: 2 additions & 0 deletions src/ELF/Layout.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
*/
#ifndef LIEF_ELF_LAYOUT_H_
#define LIEF_ELF_LAYOUT_H_

#include <cstdint>
#include <unordered_map>
#include <string>
#include <vector>
Expand Down

0 comments on commit a32f9a0

Please sign in to comment.