Use size_t instead of uint64_t to represent the vector length.

llvm-svn: 192165
This commit is contained in:
Rui Ueyama 2013-10-08 03:59:50 +00:00
parent a1d4c10c61
commit 7deb970d66
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ public:
virtual bool validate();
// \brief Does the inputGraph contain any elements
int64_t size() const { return _inputArgs.size(); }
size_t size() const { return _inputArgs.size(); }
/// \brief Dump the input Graph
virtual bool dump(raw_ostream &diagnostics = llvm::errs());