• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Disabling warnings
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Disabling warnings


  • Subject: Disabling warnings
  • From: Steve Baxter <email@hidden>
  • Date: Thu, 7 Jul 2005 16:11:14 +0100

I'm in the throws of moving a large application from Codewarrior to XCode. One of the problems I have is that there are a large number or warnings that are (for me at the moment) spurious. This large number of warnings is masking important warnings!

Is there a fine-grained way of turning off warnings? In particular I want to disable these:

warning: passing 'float' for argument 1 to 'X3DPoint::X3DPoint (SInt32, SInt32, SInt32)'
warning: converting to 'UInt8' from 'SFloat32'
warning: mismatched case in filenames, wanted "LClipBoard.h" but found "LClipboard.h"
warning: #pragma once in main file


I'm not worried about the conversion warnings at the moment, and I really don't care about the mismatched case in filenames. The "#pragma once in main file" is incorrect - this #pragma once is in my prefix file, but if another source file includes the prefix file (as it needs to for Visual Studio), I get this warning.

Finally, has anyone noticed that the hidden virtual function warnings are a bit buggy (or maybe my understanding is wrong)? The following code generates warnings, I don't think it should:

class A
{
    public:

        virtual void    F();
        virtual void    F( int i );
};

class B : public A
{
    public:

        virtual void    F();
};

This will generate these warnings:

warning: 'virtual void A::F(int)' was hidden
warning:   by 'virtual void B::F()'

This does not look right to me - B::F() does not hide A::F(int)!

Cheers,

Steve.

Stephen Baxter
Software Development Manager
Improvision
email@hidden
+44-2476-692229


_______________________________________________ Do not post admin requests to the list. They will be ignored. Xcode-users mailing list (email@hidden) Help/Unsubscribe/Update your Subscription: This email sent to email@hidden
  • Follow-Ups:
    • Re: Disabling warnings
      • From: Lawrence Gold <email@hidden>
    • Re: Disabling warnings
      • From: "Andy O'Meara" <email@hidden>
  • Prev by Date: Re: Help files in Xcode shows up as html and nothing to find . No documentation pref!
  • Next by Date: Re: Disabling warnings
  • Previous by thread: Re: Help files in Xcode shows up as html and nothing to find . No documentation pref!
  • Next by thread: Re: Disabling warnings
  • Index(es):
    • Date
    • Thread