diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2011-02-17 20:55:08 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2011-02-17 20:55:08 +0000 |
commit | 3406458512c3cdfe2076c46b9aedb4621297efd5 (patch) | |
tree | ada681fae7174c4ccbd16bed3bcf71540dfde396 /include/clang/Sema | |
parent | c24e4b9ce213c1ea4cb50865ff7901f06dc26d6a (diff) |
Clean up the style of this function to match the conventions in the rest
of Clang, and reflows the code a bit to make it easier to read.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@125773 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Sema')
-rw-r--r-- | include/clang/Sema/Sema.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Sema/Sema.h b/include/clang/Sema/Sema.h index 74807611f3..3bb81d4c9b 100644 --- a/include/clang/Sema/Sema.h +++ b/include/clang/Sema/Sema.h @@ -5063,7 +5063,7 @@ public: unsigned ByteNo) const; private: - void CheckArrayAccess(const ArraySubscriptExpr *ae); + void CheckArrayAccess(const ArraySubscriptExpr *E); bool CheckFunctionCall(FunctionDecl *FDecl, CallExpr *TheCall); bool CheckBlockCall(NamedDecl *NDecl, CallExpr *TheCall); |