diff options
author | Chris Robinson <[email protected]> | 2019-09-11 04:55:54 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-09-11 04:55:54 -0700 |
commit | e4b15aeefcc220a46542c4bb2a2cea033e7954f0 (patch) | |
tree | 7f21188acc82ae007dea24e9f3a333e8feb4e1ae /utils/sofa-info.cpp | |
parent | 5b37e2339bc91de3424b51600c3d3b96401d0b9c (diff) |
Fix some implicit casts
Diffstat (limited to 'utils/sofa-info.cpp')
-rw-r--r-- | utils/sofa-info.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/sofa-info.cpp b/utils/sofa-info.cpp index c7c7a8f7..83e3d065 100644 --- a/utils/sofa-info.cpp +++ b/utils/sofa-info.cpp @@ -84,7 +84,7 @@ static void PrintSofaArray(const char *prefix, struct MYSOFA_ARRAY *array) * of other axes as necessary. The epsilons are used to constrain the * equality of unique elements. */ -static uint GetUniquelySortedElems(const uint m, const float *triplets, const int axis, +static uint GetUniquelySortedElems(const uint m, const float *triplets, const uint axis, const float *const (&filters)[3], const float (&epsilons)[3], float *elems) { |