diff options
Diffstat (limited to 'clang/lib/CodeGen/CGVtable.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGVtable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGVtable.cpp b/clang/lib/CodeGen/CGVtable.cpp index 5cd0d329ab3..74375d9cff0 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<GlobalDecl, uint64_t>::const_iterator i = MethodToIndexMap.find(GD); |