473,799 Members | 3,224 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Is there any way to disable warning D9035?


Hi!
For reasons that it would be long to explain, I need to use
the option /QIfist in VC2005. This gives me the following
warning whenever I compile:

cl : Command line warning D9035 : option 'QIfist' has been
deprecated and will be removed in a future release

I "think" I really got it now, and it's quite annoying to be
treated like an idiot by the compiler. Thus, is there any way
to disable warning D9035? Or should I patch cl.exe? :D

Thanks a lot,
Mario

Aug 13 '06 #1
5 9683
On 13 Aug 2006 15:03:48 GMT, ma***@spamnotme .it wrote:
>
Hi!
For reasons that it would be long to explain, I need to use
the option /QIfist in VC2005. This gives me the following
warning whenever I compile:

cl : Command line warning D9035 : option 'QIfist' has been
deprecated and will be removed in a future release

I "think" I really got it now, and it's quite annoying to be
treated like an idiot by the compiler. Thus, is there any way
to disable warning D9035? Or should I patch cl.exe? :D
You mean something like
#pragma warning (disable: 9035)
Aug 13 '06 #2
"r norman" <NotMyRealEmail @_comcast.netwr ote
>>cl : Command line warning D9035 : option 'QIfist' has been
deprecated and will be removed in a future release

I "think" I really got it now, and it's quite annoying to be
treated like an idiot by the compiler. Thus, is there any way
to disable warning D9035? Or should I patch cl.exe? :D

You mean something like
#pragma warning (disable: 9035)
There's no way to suppress command line warnings
(short of filtering the output).

-hg
Aug 13 '06 #3
>>For reasons that it would be long to explain, I need to use
>>the option /QIfist in VC2005. This gives me the following
warning whenever I compile:

cl : Command line warning D9035 : option 'QIfist' has been
deprecated and will be removed in a future release

I "think" I really got it now, and it's quite annoying to be
treated like an idiot by the compiler. Thus, is there any way
to disable warning D9035? Or should I patch cl.exe? :D

You mean something like
#pragma warning (disable: 9035)
AFAIK this only works for Cxxxx (compiler) type errors.
Tools errors are unaffected.

--

Kind regards,
Bruno van Dooren
br************* *********@hotma il.com
Remove only "_nos_pam"
Aug 13 '06 #4
On Sun, 13 Aug 2006 21:06:59 +0200, "Bruno van Dooren [MVP VC++]"
<br************ **********@hotm ail.comwrote:
>>>For reasons that it would be long to explain, I need to use
the option /QIfist in VC2005. This gives me the following
warning whenever I compile:

cl : Command line warning D9035 : option 'QIfist' has been
deprecated and will be removed in a future release

I "think" I really got it now, and it's quite annoying to be
treated like an idiot by the compiler. Thus, is there any way
to disable warning D9035? Or should I patch cl.exe? :D

You mean something like
#pragma warning (disable: 9035)

AFAIK this only works for Cxxxx (compiler) type errors.
Tools errors are unaffected.
Sorry. Microsoft is just too clever for itself.
Aug 13 '06 #5
>>You mean something like
>> #pragma warning (disable: 9035)

AFAIK this only works for Cxxxx (compiler) type errors.
Tools errors are unaffected.

Sorry. Microsoft is just too clever for itself.
Yes and no.

#pragma warning is a compiler directive. i.e. it is only used during the
compilation process.
this is the same for other compilers like gcc.

Maybe they should have provided another switch for tool warnings though.

The reason they don't allow you to ignore the warning is that otherwise
you'd hide it, forget about it, and then suddenly discover that your code
does not compile anymore with a new VC release.
This way they encourage you to change your project so that you don't need
the switch anymore.

--

Kind regards,
Bruno van Dooren
br************* *********@hotma il.com
Remove only "_nos_pam"
Aug 14 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
1717
by: Jason Heyes | last post by:
Does anyone debugger-related warnings like this one? warning C4786: 'std::_Tree<std::basic_string<char,std::char_traits<char>,std::allocator<cha r> >,std::pair<std::basic_string<char,std::char_traits<char>,std::allocator<cha r> > const ,int>,std::map<std::basic_string<char,std::char_traits<char>,std::al locator<char> >,int,std::less<std::basic_string<char,std::char_traits<char>,std::allocator
5
8873
by: Jason Heyes | last post by:
This debugger-related warning is flooding my output window. Example: c:\program files\microsoft visual studio\vc98\include\xmemory(38) : warning C4786: 'std::pair<std::_Tree<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::pair<std::basic_string<char,std::char_traits<char>,std::allocator<char > > const > > ,TextureRecord>,std::map<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > ...
2
4203
by: joedsilva | last post by:
Hi, I have a few create table statements which create temporary tables that has row definitions which exceeds the 8060 size limit, this causes a warning message being generated (Message 1708). Is there a way I can disable/avoid the warning message from being printed ? Thanks,
2
3901
by: Mike Nooney | last post by:
How do I disable the "X" in the upper right hand corner of my Web Page. This is not for a windows form, but rather a web application. What I really need is to stop the user from unloading the page, if certain data is not present on the page. I know I should not use the Page_Unload event for this. I wouild like to disable the Close Button, or putting some extra validation behind a certain event, which event I am not sure. Any help would...
3
5964
by: UJ | last post by:
Is there any way to disable either the generation or the warnings from the XML Document generator? I have a couple of public enums which it is saying need the documentation and to add it would make the code hard to read (the enum values are pretty self explanatory.) TIA - Jeff.
9
28831
by: JBuckner | last post by:
My macro uses the Send Object (VBA Item.Send) function to email a spreadsheet to an Outlook contact list. I want the function to be completely automatic but Outlook displays a security warning message (...another program is attempting to automatically email...) that requires user intervention before the macro will finish execution. Can anyone advise me on how to disable the Outlook warning? I tried the Warnings Off function but realized it...
2
8789
by: O.B. | last post by:
Is there a tag that I can use to designate that a parameter is not used and thus, not flag a compiler warning? For example: public struct MyClass { public int header; private int padding_; }
10
8097
by: Gary Jefferson | last post by:
Suppose I have 3 modules that belong to a project, 'A', 'A.a' and 'B', and each module has its own logger, created with: module1logger = logging.getLogger('project.A') and module2logger = logging.getLogger('project.A.a') and
8
17867
newnewbie
by: newnewbie | last post by:
Hi, How do I disable the warning Excel gives me when I am trying to open a document with the same name? I do not care is the changes are discarded, just need to switch the warning off and let the users reopen the file (equivalent of “Yes” on the warning box). Please guide me in the right direction. Thanks! Lena
0
9685
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9538
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10247
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10214
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10023
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9067
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7561
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6803
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
2
3751
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.