mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Formatting fix for inline types with interleaved member access/attribute
This commit is contained in:
parent
958a1630aa
commit
2c48f26536
2 changed files with 44 additions and 6 deletions
|
@ -49,6 +49,18 @@ public:
|
|||
}
|
||||
};
|
||||
|
||||
struct ChildQueueState
|
||||
{
|
||||
Array<StateModify>* mQueue;
|
||||
int mIdx;
|
||||
|
||||
ChildQueueState()
|
||||
{
|
||||
mQueue = NULL;
|
||||
mIdx = 0;
|
||||
}
|
||||
};
|
||||
|
||||
BfSourceData* mSource;
|
||||
BfParserData* mParser;
|
||||
|
||||
|
@ -62,6 +74,7 @@ public:
|
|||
|
||||
int mTriviaIdx;
|
||||
int mCurSrcIdx;
|
||||
Array<ChildQueueState*> mActiveChildQueues;
|
||||
Array<StateModify> mChildNodeQueue;
|
||||
int mFormatStart;
|
||||
int mFormatEnd;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue