Renamed _bits to mBits

This commit is contained in:
Daniel Marjamäki 2018-06-16 21:43:44 +02:00
parent d468eca772
commit 0452c5a4e4
2 changed files with 5 additions and 5 deletions

View File

@ -49,7 +49,7 @@ Token::Token(TokensFrontBack *tokensFrontBack) :
mProgressValue(0),
mTokType(eNone),
mFlags(0),
_bits(0),
mBits(0),
mAstOperand1(nullptr),
mAstOperand2(nullptr),
mAstParent(nullptr),

View File

@ -442,13 +442,13 @@ public:
}
bool isBitfield() const {
return _bits > 0;
return mBits > 0;
}
unsigned char bits() const {
return _bits;
return mBits;
}
void setBits(const unsigned char b) {
_bits = b;
mBits = b;
}
/**
@ -986,7 +986,7 @@ private:
void update_property_isStandardType();
/** Bitfield bit count. */
unsigned char _bits;
unsigned char mBits;
// AST..
Token *mAstOperand1;