mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 03:52:19 +02:00
Added concept of strict equality
This commit is contained in:
parent
308605a7dd
commit
abeda6909b
13 changed files with 249 additions and 79 deletions
|
@ -3750,7 +3750,8 @@ void BfModule::DoTypeInstanceMethodProcessing(BfTypeInstance* typeInstance)
|
|||
if (methodDef->mMethodDeclaration == NULL)
|
||||
{
|
||||
// Internal methods don't need decls
|
||||
if (methodDef->mName == BF_METHODNAME_DEFAULT_EQUALS)
|
||||
if ((methodDef->mName == BF_METHODNAME_DEFAULT_EQUALS) ||
|
||||
(methodDef->mName == BF_METHODNAME_DEFAULT_STRICT_EQUALS))
|
||||
declRequired = false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue