Add missing semicolon

This commit is contained in:
Matthias Kuhn 2018-08-06 10:34:32 +02:00
parent 00fbd412d8
commit ebe382870f
2 changed files with 3 additions and 3 deletions

View File

@ -498,7 +498,7 @@ void dwgCompressor::copyCompBytes21( duint8 *cbuf, duint8 *dbuf, duint32 l, duin
dbuf[dix++] = cbuf[six + i];
dbuf[dix] = cbuf[six];
FALLTHROUGH
FALLTHROUGH;
case 8: //OK
for ( int i = 0; i < 8; i++ ) //RLZ 4[0],4[4] or 4[4],4[0]

View File

@ -3058,7 +3058,7 @@ bool dxfRW::processPolyline()
processVertex( &pl );
}
FALLTHROUGH
FALLTHROUGH;
}
default:
pl.parseCode( code, reader );
@ -3092,7 +3092,7 @@ bool dxfRW::processVertex( DRW_Polyline *pl )
v = new DRW_Vertex(); //another vertex
}
FALLTHROUGH
FALLTHROUGH;
}
default:
v->parseCode( code, reader );