diff options
author | Noel Grandin <noel@peralex.com> | 2015-02-11 13:20:49 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-02-23 09:26:58 +0200 |
commit | ba233e87efddf0a6751b35784dca1c805364ff3b (patch) | |
tree | 9d7c8a4256e688c2d47cb6ecf580ac196c4da2c0 /stoc/test | |
parent | a2fa9e2468aa5c4fd4b610c5d0ebc8959e87a072 (diff) |
remove unnecessary parenthesis in return statements
found with
$ git grep -lP 'return\s*\(\s*\w+\s*\)\s*;'
Change-Id: Ic51606877a9edcadeb647c5bf17bc928b69ab60e
Diffstat (limited to 'stoc/test')
-rw-r--r-- | stoc/test/testloader.cxx | 2 | ||||
-rw-r--r-- | stoc/test/testregistry.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
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; } |