Skip to content

Commit

Permalink
Add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Aug 6, 2018
1 parent 00fbd41 commit ebe3828
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion external/libdxfrw/intern/dwgutil.cpp
Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions external/libdxfrw/libdxfrw.cpp
Expand Up @@ -3058,7 +3058,7 @@ bool dxfRW::processPolyline()
processVertex( &pl );
}

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

FALLTHROUGH
FALLTHROUGH;
}
default:
v->parseCode( code, reader );
Expand Down

0 comments on commit ebe3828

Please sign in to comment.