diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-06 04:11:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-06 04:11:27 +0000 |
commit | e0def7589a8afa8a6acef13476bb3f882c104b91 (patch) | |
tree | ebecec9d7de9638b7b3728622f77b4b71f4816ac /include/clang/Analysis/Support/ExprDeclBitVector.h | |
parent | 5483bdf386ae000ca9c0761481850b005077f4cd (diff) |
fix a number of const qualification bugs.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49257 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Analysis/Support/ExprDeclBitVector.h')
-rw-r--r-- | include/clang/Analysis/Support/ExprDeclBitVector.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Analysis/Support/ExprDeclBitVector.h b/include/clang/Analysis/Support/ExprDeclBitVector.h index e54bacae7b..5796fb39a7 100644 --- a/include/clang/Analysis/Support/ExprDeclBitVector.h +++ b/include/clang/Analysis/Support/ExprDeclBitVector.h @@ -102,7 +102,7 @@ struct DeclBitVector_Types { return DeclBV[i]; } - const bool getBit(unsigned i) const { + bool getBit(unsigned i) const { return DeclBV[i]; } |