From 4fae84934b8a1404847462e4c0a510c276fbeb95 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Sat, 21 Jan 2017 14:50:45 +0200 Subject: [PATCH] - useless const qualifier in fmod.h it only introduced two warnings reported by Clang: warning: 'const' type qualifier on return type has no effect --- fmodex/inc/fmod.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fmodex/inc/fmod.h b/fmodex/inc/fmod.h index 18dfdc24..4a3f40dc 100644 --- a/fmodex/inc/fmod.h +++ b/fmodex/inc/fmod.h @@ -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. */ };