mirror of https://github.com/kivy/kivy.git
libtess2: fix unused variable warning when NDEBUG is activated
This commit is contained in:
parent
2cab4a141b
commit
58fbb294c2
|
@ -1134,7 +1134,9 @@ static void InitEdgeDict( TESStesselator *tess )
|
|||
static void DoneEdgeDict( TESStesselator *tess )
|
||||
{
|
||||
ActiveRegion *reg;
|
||||
#ifndef NDEBUG
|
||||
int fixedEdges = 0;
|
||||
#endif
|
||||
|
||||
while( (reg = (ActiveRegion *)dictKey( dictMin( tess->dict ))) != NULL ) {
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue