- useless const qualifier in fmod.h

it only introduced two warnings reported by Clang:
warning: 'const' type qualifier on return type has no effect
This commit is contained in:
alexey.lysiuk 2017-01-21 14:50:45 +02:00
parent ca8a44e887
commit 4fae84934b
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ struct FMOD_ASYNCREADINFO
void *userdata; /* [r] User data pointer. */
const void (*done)(FMOD_ASYNCREADINFO *info, FMOD_RESULT result); /* FMOD file system wake up function. Use instead of 'result' with FMOD_INIT_ASYNCREAD_FAST to get semaphore based performance improvement. Call this when user file read is finished. Pass result of file read as a parameter. */
void (*done)(FMOD_ASYNCREADINFO *info, FMOD_RESULT result); /* FMOD file system wake up function. Use instead of 'result' with FMOD_INIT_ASYNCREAD_FAST to get semaphore based performance improvement. Call this when user file read is finished. Pass result of file read as a parameter. */
};