From ba233e87efddf0a6751b35784dca1c805364ff3b Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 11 Feb 2015 13:20:49 +0200 Subject: remove unnecessary parenthesis in return statements found with $ git grep -lP 'return\s*\(\s*\w+\s*\)\s*;' Change-Id: Ic51606877a9edcadeb647c5bf17bc928b69ab60e --- stoc/test/testloader.cxx | 2 +- stoc/test/testregistry.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'stoc/test') diff --git a/stoc/test/testloader.cxx b/stoc/test/testloader.cxx index ff9ff57ea670..3f216df29c4f 100644 --- a/stoc/test/testloader.cxx +++ b/stoc/test/testloader.cxx @@ -113,7 +113,7 @@ SAL_IMPLEMENT_MAIN() printf("Test Dll ComponentLoader, OK!\n"); - return(0); + return 0; } diff --git a/stoc/test/testregistry.cxx b/stoc/test/testregistry.cxx index bf8b0fe4ef3f..763619ae33a4 100644 --- a/stoc/test/testregistry.cxx +++ b/stoc/test/testregistry.cxx @@ -668,7 +668,7 @@ SAL_IMPLEMENT_MAIN() xSimReg->destroy(); xSimReg->open( areg2, sal_False, sal_True ); xSimReg->destroy(); - return(0); + return 0; } -- cgit