This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: named warnings & individual warning control


> 
> Joe Buck wrote:
> 
> >On Fri, Jun 25, 2004 at 04:02:19PM -0700, Stan Shebs wrote:
> Or,
> 
>     T* ptr_T __attribute__((I_know_what_Im_doing));
> 
> to suppress the warning selectively, if the user absolutely
> must make it go away.


Or use the documented way of getting disable the warning:

  T *ptr_T = ptr_T;

(which can be turned off by -Winit-self).


Thanks,
Andrew Pinski


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]