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 --- registry/test/testregcpp.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'registry') diff --git a/registry/test/testregcpp.cxx b/registry/test/testregcpp.cxx index 0d9aa977f855..532501d73859 100644 --- a/registry/test/testregcpp.cxx +++ b/registry/test/testregcpp.cxx @@ -399,7 +399,7 @@ void test_registry_CppApi() // Link Test - REG_ENSURE(!rootKey.createKey(OUString("/myFourthKey/X"), key7), "test_registry_CppApi error 7c)");; + REG_ENSURE(!rootKey.createKey(OUString("/myFourthKey/X"), key7), "test_registry_CppApi error 7c)"); REG_ENSURE(!key6.createLink(OUString("myFirstLink"), OUString("/myFourthKey/X")), "test_registry_CppApi error 7d"); REG_ENSURE(!key6.createKey(OUString("mySixthSubKey"), key7), "test_registry_CppApi error 7e"); -- cgit