summaryrefslogtreecommitdiff
path: root/salhelper/test/dynamicloader
diff options
context:
space:
mode:
authorPhilipp Hofer <philipp.hofer@protonmail.com>2020-11-12 13:11:21 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2020-11-19 19:24:26 +0100
commit481fdcc619dadf0a65e5af73b0c33b26df2400e5 (patch)
treebfd3facc65a04ff23b78bdc8fff30214a7398fba /salhelper/test/dynamicloader
parent5d8cf2021d8f7f171924f2b1adf824532cd67497 (diff)
tdf#123936 Formatting files in module salhelper with clang-format
Change-Id: I2c1337f54934222580a95ac90c162d880e923110 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105700 Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> Tested-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'salhelper/test/dynamicloader')
-rw-r--r--salhelper/test/dynamicloader/samplelib.hxx11
1 files changed, 4 insertions, 7 deletions
diff --git a/salhelper/test/dynamicloader/samplelib.hxx b/salhelper/test/dynamicloader/samplelib.hxx
index 7b65a0ceb182..c254470fbbb6 100644
--- a/salhelper/test/dynamicloader/samplelib.hxx
+++ b/salhelper/test/dynamicloader/samplelib.hxx
@@ -24,19 +24,16 @@
struct SampleLib_Api
{
- sal_Int32 (*funcA)( sal_Int32 );
- double (*funcB)( double );
+ sal_Int32 (*funcA)(sal_Int32);
+ double (*funcB)(double);
};
-
typedef SampleLib_Api* (*InitSampleLib_Api)(void);
#define SAMPLELIB_INIT_FUNCTION_NAME "initSampleLibApi"
-
-sal_Int32 SAL_CALL funcA( sal_Int32 a);
-double SAL_CALL funcB( double a);
-
+sal_Int32 SAL_CALL funcA(sal_Int32 a);
+double SAL_CALL funcB(double a);
#endif