diff --git a/clang/lib/CodeGen/CGVtable.cpp b/clang/lib/CodeGen/CGVtable.cpp index 5cd0d329ab3c..74375d9cff0a 100644 --- a/clang/lib/CodeGen/CGVtable.cpp +++ b/clang/lib/CodeGen/CGVtable.cpp @@ -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::const_iterator i = MethodToIndexMap.find(GD);