Skip to content

Commit 894d9fe

Browse files
authored
fix: add missing static keyword
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent 3e9122c commit 894d9fe

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/logistic/logcdf/src

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dists/logistic/logcdf/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* @param x input value
2929
* @return log(1 + exp(x))
3030
*/
31-
double log1pexp( const double x ) {
31+
static double log1pexp( const double x ) {
3232
if ( x <= 18.0 ) {
3333
return stdlib_base_log1p( stdlib_base_exp( x ) );
3434
}

0 commit comments

Comments
 (0)