diff options
| author | Rui Ueyama <ruiu@google.com> | 2016-10-20 01:33:09 +0000 |
|---|---|---|
| committer | Rui Ueyama <ruiu@google.com> | 2016-10-20 01:33:09 +0000 |
| commit | 837182ec1eff1c8249102e1b36dfb86a91393dc2 (patch) | |
| tree | b7297ec99033d0b436424ddeb84e12d324719fc7 /lld/ELF/InputFiles.cpp | |
| parent | de1f03936027a679f1822da3e50bd7e13ab8ccbe (diff) | |
| download | bcm5719-llvm-837182ec1eff1c8249102e1b36dfb86a91393dc2.tar.gz bcm5719-llvm-837182ec1eff1c8249102e1b36dfb86a91393dc2.zip | |
Remove std:: from std::size_t.
llvm-svn: 284687
Diffstat (limited to 'lld/ELF/InputFiles.cpp')
| -rw-r--r-- | lld/ELF/InputFiles.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/InputFiles.cpp b/lld/ELF/InputFiles.cpp index af0f30a427d..c70a850ed27 100644 --- a/lld/ELF/InputFiles.cpp +++ b/lld/ELF/InputFiles.cpp @@ -813,7 +813,7 @@ template <class ELFT> InputFile *BinaryFile::createELF() { SZSym.Sym->st_value = MB.getBufferSize(); // Fix the ELF file layout and write it down to ELFData uint8_t vector. - std::size_t Size = ELF.layout(); + size_t Size = ELF.layout(); ELFData.resize(Size); ELF.write(ELFData.data()); |

