Skip to content

Commit

Permalink
Merge pull request #891 from topazus/fix-dep-in-gcc133
Browse files Browse the repository at this point in the history
Fix missing <cstdint> header for gcc 13
  • Loading branch information
romainthomas committed Apr 8, 2023
2 parents 4e318da + 961cc44 commit 383dc0f
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 383dc0f

Please sign in to comment.