mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Fixit improvements, remove namespace
This commit is contained in:
parent
7a5dd90cff
commit
61bd31836d
10 changed files with 304 additions and 157 deletions
|
@ -503,7 +503,11 @@ BfImportKind BfMethodInstance::GetImportKind()
|
|||
return mMethodDef->mImportKind;
|
||||
|
||||
auto module = GetOwner()->mModule;
|
||||
BfCustomAttribute* customAttribute = GetCustomAttributes()->Get(module->mCompiler->mImportAttributeTypeDef);
|
||||
auto customAttributes = GetCustomAttributes();
|
||||
if (customAttributes == NULL)
|
||||
return BfImportKind_None;
|
||||
|
||||
BfCustomAttribute* customAttribute = customAttributes->Get(module->mCompiler->mImportAttributeTypeDef);
|
||||
if (customAttribute == NULL)
|
||||
return BfImportKind_Import_Static;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue