diff options
author | Chad Rosier <mcrosier@apple.com> | 2011-08-04 23:34:15 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2011-08-04 23:34:15 +0000 |
commit | f01a7ddcd67c0a8e6df3ba242be6b401c3a03aae (patch) | |
tree | 384fff51eb364bac2f4328055000455ff8b5b1d2 /clang/lib/AST/ASTContext.cpp | |
parent | ea350180d2560ae338dacfeb454910fefcecf291 (diff) | |
download | bcm5719-llvm-f01a7ddcd67c0a8e6df3ba242be6b401c3a03aae.tar.gz bcm5719-llvm-f01a7ddcd67c0a8e6df3ba242be6b401c3a03aae.zip |
More whitespace and naming fixup. No functionality change.
llvm-svn: 136944
Diffstat (limited to 'clang/lib/AST/ASTContext.cpp')
-rw-r--r-- | clang/lib/AST/ASTContext.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/AST/ASTContext.cpp b/clang/lib/AST/ASTContext.cpp index f5c4ffac92d..92695f2398e 100644 --- a/clang/lib/AST/ASTContext.cpp +++ b/clang/lib/AST/ASTContext.cpp @@ -573,13 +573,13 @@ bool ASTContext::BitfieldFollowsBitfield(const FieldDecl *FD, LastFD->getBitWidth()->EvaluateAsInt(*this).getZExtValue()); } -bool ASTContext::NoneBitfieldFollowsBitfield(const FieldDecl *FD, +bool ASTContext::NonBitfieldFollowsBitfield(const FieldDecl *FD, const FieldDecl *LastFD) const { return (!FD->isBitField() && LastFD && LastFD->isBitField() && LastFD->getBitWidth()->EvaluateAsInt(*this).getZExtValue()); } -bool ASTContext::BitfieldFollowsNoneBitfield(const FieldDecl *FD, +bool ASTContext::BitfieldFollowsNonBitfield(const FieldDecl *FD, const FieldDecl *LastFD) const { return (FD->isBitField() && LastFD && !LastFD->isBitField() && FD->getBitWidth()->EvaluateAsInt(*this).getZExtValue()); |