mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
Fix some compilation warnings
This commit is contained in:
parent
268553ecd4
commit
16f8fc0657
9 changed files with 13 additions and 11 deletions
|
|
@ -265,7 +265,7 @@ void MathUtilities::circShift( double* pData, int length, int shift)
|
|||
|
||||
int MathUtilities::compareInt (const void * a, const void * b)
|
||||
{
|
||||
return ( *(int*)a - *(int*)b );
|
||||
return ( *(const int*)a - *(const int*)b );
|
||||
}
|
||||
|
||||
void MathUtilities::normalise(double *data, int length, NormaliseType type)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue