static size_t PingStream(const Image *magick_unused(image),
const void *magick_unused(pixels),const size_t columns)
{
- (void) image;
- (void) pixels;
+ magick_unreferenced(image);
+ magick_unreferenced(pixels);
return(columns);
}
static size_t PingStream(const Image *magick_unused(image),
const void *magick_unused(pixels),const size_t columns)
{
- (void) image;
- (void) pixels;
+ magick_unreferenced(image);
+ magick_unreferenced(pixels);
return(columns);
}
static void DefaultErrorHandler(const ExceptionType magick_unused(severity),
const char *reason,const char *description)
{
- (void) severity;
+ magick_unreferenced(severity);
if (reason == (char *) NULL)
return;
static void DefaultWarningHandler(const ExceptionType magick_unused(severity),
const char *reason,const char *description)
{
- (void) severity;
+ magick_unreferenced(severity);
if (reason == (char *) NULL)
return;
const ExceptionType magick_unused(severity),
const char *reason,const char *description)
{
- (void) severity;
+ magick_unreferenced(severity);
if (reason == (char *) NULL)
return;
static LONG WINAPI NTUncaughtException(EXCEPTION_POINTERS *info)
{
- (void) info;
+ magick_unreferenced(info);
AsynchronousResourceComponentTerminus();
return(EXCEPTION_CONTINUE_SEARCH);
}
UnlockSemaphoreInfo(clEnv->commandQueuesLock);
}
#else
- (void) clEnv;
- (void) kernel;
- (void) event;
+ magick_unreferenced(clEnv);
+ magick_unreferenced(kernel);
+ magick_unreferenced(event);
#endif
}
__builtin_prefetch(address,mode,locality)
#else
#define MagickCachePrefetch(address,mode,locality) \
- (void) address; \
- (void) mode; \
- (void) locality;
+ magick_unreferenced(address); \
+ magick_unreferenced(mode); \
+ magick_unreferenced(locality);
#endif
#if defined(MAGICKCORE_THREAD_SUPPORT)