mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Fixed dependency of alias types
This commit is contained in:
parent
ad35a8a254
commit
c6a7af2a4b
4 changed files with 31 additions and 12 deletions
|
@ -160,6 +160,19 @@ public:
|
|||
TypeMap::iterator erase(TypeMap::iterator& itr);
|
||||
};
|
||||
|
||||
class BfDepContext
|
||||
{
|
||||
public:
|
||||
HashSet<BfType*> mDeepSeenAliases;
|
||||
int mAliasDepth;
|
||||
|
||||
public:
|
||||
BfDepContext()
|
||||
{
|
||||
mAliasDepth = 0;
|
||||
}
|
||||
};
|
||||
|
||||
enum BfHotDepDataKind : int8
|
||||
{
|
||||
BfHotDepDataKind_Unknown,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue