diff options
author | Philipp Hofer <philipp.hofer@protonmail.com> | 2020-11-12 13:12:24 +0100 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2020-11-19 01:36:55 +0100 |
commit | 6ceb1d0f2e23749fe03fab08ec338ba4d7782173 (patch) | |
tree | 44e69c2fdf12594169ca3a052224368faa967185 /scaddins | |
parent | 695280feb90729fde1a7ecf1c409ae16f8281a46 (diff) |
tdf#123936 Formatting files in module sc with clang-format
Change-Id: I66cafda863e3e1e4559a57289c09925d68b0719c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105701
Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Tested-by: Jenkins
Diffstat (limited to 'scaddins')
-rw-r--r-- | scaddins/source/analysis/bessel.hxx | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/scaddins/source/analysis/bessel.hxx b/scaddins/source/analysis/bessel.hxx index 58086ed258ed..2a3c88c96df4 100644 --- a/scaddins/source/analysis/bessel.hxx +++ b/scaddins/source/analysis/bessel.hxx @@ -22,39 +22,37 @@ #include <sal/types.h> -namespace sca::analysis { - - +namespace sca::analysis +{ // BESSEL functions - /** Returns the result for the unmodified BESSEL function of first kind (J), n-th order, at point x. @throws css::lang::IllegalArgumentException @throws css::sheet::NoConvergenceException */ -double BesselJ( double x, sal_Int32 n ); +double BesselJ(double x, sal_Int32 n); /** Returns the result for the modified BESSEL function of first kind (I), n-th order, at point x. @throws css::lang::IllegalArgumentException @throws css::sheet::NoConvergenceException */ -double BesselI( double x, sal_Int32 n ); +double BesselI(double x, sal_Int32 n); /** Returns the result for the unmodified BESSEL function of second kind (Y), n-th order, at point x. @throws css::lang::IllegalArgumentException @throws css::sheet::NoConvergenceException */ -double BesselY( double x, sal_Int32 n ); +double BesselY(double x, sal_Int32 n); /** Returns the result for the modified BESSEL function of second kind (K), n-th order, at point x. @throws css::lang::IllegalArgumentException @throws css::sheet::NoConvergenceException */ -double BesselK( double x, sal_Int32 n ); +double BesselK(double x, sal_Int32 n); } // namespace sca::analysis |