mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 21:38:52 +00:00
This commit is contained in:
parent
5f6c0e0a10
commit
fbc1a086ab
1 changed files with 4 additions and 3 deletions
|
|
@ -53,6 +53,7 @@ namespace Cosmos.Compiler
|
|||
|
||||
private void ScanList()
|
||||
{
|
||||
// dont use a foreach here, the list will change.
|
||||
for(int i = 0; i < mMethods.Count; i++)
|
||||
{
|
||||
ScanMethod(mMethods[i]);
|
||||
|
|
@ -67,10 +68,10 @@ namespace Cosmos.Compiler
|
|||
// pinvoke
|
||||
return;
|
||||
}
|
||||
|
||||
// abstract methods dont have an implementation
|
||||
if(aMethodBase.IsAbstract)
|
||||
else if (aMethodBase.IsAbstract)
|
||||
{
|
||||
// abstract methods dont have an implementation
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue