mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-05 01:20:51 +03:00
Fix warning because of signed/unsigned comparison
This commit is contained in:
parent
992fc7b318
commit
0040b01675
1 changed files with 1 additions and 1 deletions
|
@ -320,7 +320,7 @@ static void DtoCreateNestedContextType(FuncDeclaration* fd)
|
|||
// start with adding all enclosing parent frames until a static parent is reached
|
||||
|
||||
LLStructType* innerFrameType = NULL;
|
||||
int depth = 0;
|
||||
unsigned depth = 0;
|
||||
|
||||
if (parentFunc)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue