diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-10-09 10:28:48 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-10-09 14:47:17 +0200 |
commit | 7ceee0f1ec0e349d0df4980d7fdedbd13c7917c5 (patch) | |
tree | 616ab419fe0f01e94740de7faacb393775420589 /scaddins | |
parent | 664db0d945fbb23e115eeea8377e3a4e88541da1 (diff) |
Extend loplugin:redundantinline to catch inline functions w/o external linkage
...where "inline" (in its meaning of "this function can be defined in multiple
translation units") thus doesn't make much sense. (As discussed in
compilerplugins/clang/redundantinline.cxx, exempt such "static inline" functions
in include files for now.)
All the rewriting has been done automatically by the plugin, except for one
instance in sw/source/ui/frmdlg/column.cxx that used to involve an #if), plus
some subsequent solenv/clang-format/reformat-formatted-files.
Change-Id: Ib8b996b651aeafc03bbdc8890faa05ed50517224
Reviewed-on: https://gerrit.libreoffice.org/61573
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'scaddins')
-rw-r--r-- | scaddins/source/analysis/analysishelper.cxx | 12 | ||||
-rw-r--r-- | scaddins/source/pricing/black_scholes.cxx | 6 |
2 files changed, 9 insertions, 9 deletions
diff --git a/scaddins/source/analysis/analysishelper.cxx b/scaddins/source/analysis/analysishelper.cxx index a6b8e7df568c..9bd869bc8c95 100644 --- a/scaddins/source/analysis/analysishelper.cxx +++ b/scaddins/source/analysis/analysishelper.cxx @@ -710,7 +710,7 @@ double ConvertToDec( const OUString& aStr, sal_uInt16 nBase, sal_uInt16 nCharLim } -static inline sal_Char GetMaxChar( sal_uInt16 nBase ) +static sal_Char GetMaxChar( sal_uInt16 nBase ) { const sal_Char* const c = "--123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; return c[ nBase ]; @@ -769,31 +769,31 @@ double Erfc( double x ) return ::rtl::math::erfc(x); } -static inline bool IsNum( sal_Unicode c ) +static bool IsNum( sal_Unicode c ) { return c >= '0' && c <= '9'; } -static inline bool IsComma( sal_Unicode c ) +static bool IsComma( sal_Unicode c ) { return c == '.' || c == ','; } -static inline bool IsExpStart( sal_Unicode c ) +static bool IsExpStart( sal_Unicode c ) { return c == 'e' || c == 'E'; } -static inline bool IsImagUnit( sal_Unicode c ) +static bool IsImagUnit( sal_Unicode c ) { return c == 'i' || c == 'j'; } -static inline sal_uInt16 GetVal( sal_Unicode c ) +static sal_uInt16 GetVal( sal_Unicode c ) { return sal_uInt16( c - '0' ); } diff --git a/scaddins/source/pricing/black_scholes.cxx b/scaddins/source/pricing/black_scholes.cxx index ff5c5f71cda6..126901ad5c20 100644 --- a/scaddins/source/pricing/black_scholes.cxx +++ b/scaddins/source/pricing/black_scholes.cxx @@ -86,16 +86,16 @@ namespace bs { // helper functions -static inline double sqr(double x) { +static double sqr(double x) { return x*x; } // normal density (see also ScInterpreter::phi) -static inline double dnorm(double x) { +static double dnorm(double x) { //return (1.0/sqrt(2.0*M_PI))*exp(-0.5*x*x); // windows may not have M_PI return 0.39894228040143268*exp(-0.5*x*x); } // cumulative normal distribution (see also ScInterpreter::integralPhi) -static inline double pnorm(double x) { +static double pnorm(double x) { //return 0.5*(erf(sqrt(0.5)*x)+1.0); // windows may not have erf return 0.5 * ::rtl::math::erfc(-x * 0.7071067811865475); } |