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:
@@ -167,7 +167,7 @@ typedef pthread_cond_t ThreadCondition;
|
||||
|
||||
void BLI_condition_init(ThreadCondition *cond);
|
||||
void BLI_condition_wait(ThreadCondition *cond, ThreadMutex *mutex);
|
||||
void BLI_condition_wait_global_mutex(ThreadCondition *cond, const int type);
|
||||
void BLI_condition_wait_global_mutex(ThreadCondition *cond, int type);
|
||||
void BLI_condition_notify_one(ThreadCondition *cond);
|
||||
void BLI_condition_notify_all(ThreadCondition *cond);
|
||||
void BLI_condition_end(ThreadCondition *cond);
|
||||
|
||||
Reference in New Issue
Block a user