!15566 add const for wrapper

From: @zhujingxuan
Reviewed-by: @wangchengyuan,@hangangqiang
Signed-off-by: @wangchengyuan
This commit is contained in:
mindspore-ci-bot 2021-04-26 09:36:25 +08:00 committed by Gitee
commit d5f409a677
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ static inline bool compare(int i, int j, const float *scores) {
static void heapify(const float *scores, int *indexes, int n, int i) {
while (i < n) {
int cur = i;
int l = 2 * i + 1;
const int l = 2 * i + 1;
const int r = 2 * i + 2;
if (r < n && compare(indexes[cur], indexes[r], scores)) {
cur = r;