From 88b24ffe73a6401437a1df33d00253a8945f769a Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Tue, 8 Oct 2013 20:24:23 +0000 Subject: [PATCH] Use size_t instead of int64_t for the vector size. llvm-svn: 192229 --- lld/include/lld/Driver/InputGraph.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lld/include/lld/Driver/InputGraph.h b/lld/include/lld/Driver/InputGraph.h index 019c3e5..b5ded34 100644 --- a/lld/include/lld/Driver/InputGraph.h +++ b/lld/include/lld/Driver/InputGraph.h @@ -289,7 +289,7 @@ public: } /// \brief number of files. - int64_t numFiles() const { return _files.size(); } + size_t numFiles() const { return _files.size(); } /// \brief add a file to the list of files virtual void addFiles(InputGraph::FileVectorT files) { @@ -355,7 +355,7 @@ public: } /// \brief number of files. - int64_t numFiles() const { return _files.size(); } + size_t numFiles() const { return _files.size(); } /// \brief add a file to the list of files virtual void appendInputFile(std::unique_ptr f) { -- 2.7.4