Skip to content

Commit ca6489f

Browse files
authored
refactor: remove include and fix return type
PR-URL: #2699 Ref: f5d15f7#r144735243 Ref: f5d15f7#r144735169 Reviewed-by: Athan Reines <[email protected]>
1 parent dc626ba commit ca6489f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

lib/node_modules/@stdlib/math/base/special/sincospi/lib/native.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var addon = require( './../src/addon.node' );
3131
*
3232
* @private
3333
* @param {number} x - input value
34-
* @returns {Array<number>} two-element array containing sin(πx) and cos(πx)
34+
* @returns {Float64Array} two-element array containing sin(πx) and cos(πx)
3535
*
3636
* @example
3737
* var v = sincospi( 0.0 );

lib/node_modules/@stdlib/math/base/special/sincospi/src/main.c

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
#include "stdlib/math/base/assert/is_infinite.h"
2626
#include "stdlib/math/base/assert/is_nan.h"
2727
#include "stdlib/constants/float64/pi.h"
28-
#include <stdint.h>
2928

3029
/**
3130
* Simultaneously computes the sine and cosine of a number times π.

0 commit comments

Comments
 (0)