File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -23,22 +23,22 @@ THE SOFTWARE.
2323#ifndef ELFTYPES_H
2424#define ELFTYPES_H
2525
26- #include < stdint.h >
26+ #include < cstdint >
2727
2828#ifdef __cplusplus
2929namespace ELFIO {
3030#endif
3131
32- using Elf_Half = uint16_t ;
33- using Elf_Word = uint32_t ;
34- using Elf_Sword = int32_t ;
35- using Elf_Xword = uint64_t ;
36- using Elf_Sxword = int64_t ;
32+ using Elf_Half = std:: uint16_t ;
33+ using Elf_Word = std:: uint32_t ;
34+ using Elf_Sword = std:: int32_t ;
35+ using Elf_Xword = std:: uint64_t ;
36+ using Elf_Sxword = std:: int64_t ;
3737
38- using Elf32_Addr = uint32_t ;
39- using Elf32_Off = uint32_t ;
40- using Elf64_Addr = uint64_t ;
41- using Elf64_Off = uint64_t ;
38+ using Elf32_Addr = std:: uint32_t ;
39+ using Elf32_Off = std:: uint32_t ;
40+ using Elf64_Addr = std:: uint64_t ;
41+ using Elf64_Off = std:: uint64_t ;
4242
4343using Elf32_Half = Elf_Half;
4444using Elf64_Half = Elf_Half;
You can’t perform that action at this time.
0 commit comments