Cast because I think I know what I'm doing. There are warnings about converting

from 64-bit to 32-bit.

llvm-svn: 51982
This commit is contained in:
Bill Wendling 2008-06-05 07:35:27 +00:00
parent 63a2cb59b0
commit 18fbf1bc37
1 changed files with 2 additions and 2 deletions

View File

@ -1602,7 +1602,7 @@ public:
}
unsigned getNumIndices() const { // Note: always non-negative
return Indices.size();
return (unsigned)Indices.size();
}
bool hasIndices() const {
@ -1781,7 +1781,7 @@ public:
}
unsigned getNumIndices() const { // Note: always non-negative
return Indices.size();
return (unsigned)Indices.size();
}
bool hasIndices() const {