Return bool as a bool instead of a uint64_t.

llvm-svn: 90610
This commit is contained in:
Benjamin Kramer 2009-12-04 22:45:27 +00:00
parent 0508e435c3
commit 62ab616666
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ private:
/// getIndex - Gives the index of a passed in GlobalDecl. Returns false if
/// the index couldn't be found.
uint64_t getIndex(GlobalDecl GD, uint64_t &Index) const {
bool getIndex(GlobalDecl GD, uint64_t &Index) const {
llvm::DenseMap<GlobalDecl, uint64_t>::const_iterator i
= MethodToIndexMap.find(GD);