forked from OSchip/llvm-project
Use size_t instead of uint64_t to represent the vector length.
llvm-svn: 192165
This commit is contained in:
parent
a1d4c10c61
commit
7deb970d66
|
@ -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());
|
||||
|
|
Loading…
Reference in New Issue