From: Conrad Parker Date: Mon, 16 Aug 2004 01:37:09 +0000 (+0000) Subject: add #ifdef __WINS__ to symbian/config.h around pragmas (ignored by gcc) X-Git-Tag: v1.3.3~511 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f0f4482acfc75dadedcddc07f2ecfc001cf8e624;p=platform%2Fupstream%2Flibvorbis.git add #ifdef __WINS__ to symbian/config.h around pragmas (ignored by gcc) svn path=/trunk/vorbis/; revision=7575 --- diff --git a/symbian/config.h b/symbian/config.h index 141c438..56d2179 100644 --- a/symbian/config.h +++ b/symbian/config.h @@ -33,6 +33,8 @@ #ifndef CONFIG_H #define CONFIG_H +#ifdef __WINS__ + /* Disable some warnings */ #pragma warning(disable: 4100) /* unreferenced formal parameter */ @@ -47,4 +49,6 @@ #pragma warning(disable: 4706) /* assignment within conditional expression */ #pragma warning(disable: 4761) /* integral size mismatch in argument: conversion supplied */ +#endif + #endif /* ! CONFIG_H */