Cleanup: remove redundant const qualifiers for POD types
MSVC used to warn about const mismatch for arguments passed by value. Remove these as newer versions of MSVC no longer show this warning.
This commit is contained in:
@@ -114,10 +114,8 @@ enum {
|
||||
BLI_SCANFILL_CALC_LOOSE = (1 << 4),
|
||||
};
|
||||
void BLI_scanfill_begin(ScanFillContext *sf_ctx);
|
||||
unsigned int BLI_scanfill_calc(ScanFillContext *sf_ctx, const int flag);
|
||||
unsigned int BLI_scanfill_calc_ex(ScanFillContext *sf_ctx,
|
||||
const int flag,
|
||||
const float nor_proj[3]);
|
||||
unsigned int BLI_scanfill_calc(ScanFillContext *sf_ctx, int flag);
|
||||
unsigned int BLI_scanfill_calc_ex(ScanFillContext *sf_ctx, int flag, const float nor_proj[3]);
|
||||
void BLI_scanfill_end(ScanFillContext *sf_ctx);
|
||||
|
||||
void BLI_scanfill_begin_arena(ScanFillContext *sf_ctx, struct MemArena *arena);
|
||||
|
Reference in New Issue
Block a user