Skip to content

Commit

Permalink
chore: resolve lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
aman-095 committed Apr 12, 2024
1 parent 7e37513 commit 818ede6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ extern "C" {
/**
* Applies a plane rotation.
*/
void c_drot( const int N, double *X, const int strideX, double *Y, const int strideY, const double s, const double c );
void c_drot( const int N, double *X, const int strideX, double *Y, const int strideY, const double c, const double s );

#ifdef __cplusplus
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ extern "C" {
/**
* Applies a plane rotation.
*/
void cblas_drot( const int N, double *X, const int strideX, double *Y, const int strideY, const double c, const double s);
void cblas_drot( const int N, double *X, const int strideX, double *Y, const int strideY, const double c, const double s );

#ifdef __cplusplus
}
Expand Down

0 comments on commit 818ede6

Please sign in to comment.