From 3b24dcc8a8138c1e1495c3dba5ffe5748cb183c2 Mon Sep 17 00:00:00 2001 From: Peter Senna Tschudin Date: Mon, 26 May 2014 19:41:16 +0200 Subject: Remove unnecessary semicolons A simplified version of the semantic match that finds this problem is follows: (http://coccinelle.lip6.fr/) // @r1@ statement S; position p,p1; @@ S@p1;@p @script:python r2@ p << r1.p; p1 << r1.p1; @@ if p[0].line != p1[0].line_end: cocci.include_match(False) @@ position r1.p; @@ -;@p // Change-Id: Ib9708d37fbb4c6060f88d5dae3814a2d37b2091e Reviewed-on: https://gerrit.libreoffice.org/9493 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- l10ntools/source/lngmerge.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'l10ntools') diff --git a/l10ntools/source/lngmerge.cxx b/l10ntools/source/lngmerge.cxx index 1ab50ac06f79..5465d556a023 100644 --- a/l10ntools/source/lngmerge.cxx +++ b/l10ntools/source/lngmerge.cxx @@ -106,7 +106,7 @@ bool LngParser::CreatePO( const OString &rPOFile ) ReadLine( sLine , Text ); sID = sGroup; sLine = *(*pLines)[ nPos++ ]; - }; + } if( bStart ) { bStart = false; sID = sGroup; -- cgit