473,789 Members | 2,330 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

preprocessor

I have a preprocessor constant (SUPPORT_PNG_IM AGE) with 3 states, to control the compilation:
---------
#undef SUPPORT_PNG_IMA GE
#define SUPPORT_PNG_IMA GE
#define SUPPORT_PNG_IMA GE ONLY
---------
With the 1st & 3rd line the following line works
---------
#if SUPPORT_PNG_IMA GE == ONLY
---------
but with the 2nd, compiler throws:
---------
fatal error C1017: invalid integer constant expression
---------

how can I handle this?

thanks
Jul 22 '05 #1
2 4882
On Sat, 28 Feb 2004 03:55:05 +0200, "<- Chameleon ->"
<ch******@hotma il.NOSPAM.com> wrote:
I have a preprocessor constant (SUPPORT_PNG_IM AGE) with 3 states, to control the compilation:
---------
#undef SUPPORT_PNG_IMA GE
#define SUPPORT_PNG_IMA GE
#define SUPPORT_PNG_IMA GE ONLY
---------
With the 1st & 3rd line the following line works
---------
#if SUPPORT_PNG_IMA GE == ONLY
---------
but with the 2nd, compiler throws:
---------
fatal error C1017: invalid integer constant expression
---------

how can I handle this?
I'd suggest sticking with one of the following conventions or the other for
defining SUPPORT_PNG_IMA GE:

Convention #1: Either it is defined or it isn't.

Convention #2: It has a non-empty value, and we'll be testing it.

The first convention, testable with any of the following:

#ifdef SUPPORT_PNG_IMA GE
#ifndef SUPPORT_PNG_IMA GE
#if defined(SUPPORT _PNG_IMAGE)
#if !defined(SUPPOR T_PNG_IMAGE)

is good enough for either/or situations. The second, testable with

#if SYMBOL == whatever

is suitable for having many mutually exclusive conditional compilation
blocks.

You /can/ get where you want to go with the convention you've already
established, if you absolutely have to:

#if !defined(SUPPOR T_PNG_IMAGE) // your 1st case

#if defined(SUPPORT _PNG_IMAGE) && \
SUPPORT_PNG_IMA GE != ONLY // case 2

#if defined(SUPPORT _PNG_IMAGE) && \
SUPPORT_PNG_IMA GE == ONLY // case 3

but it is not very orthogonal. BTW, ONLY has been previously #defined,
right?
-leor


thanks


Leor Zolman
BD Software
le**@bdsoft.com
www.bdsoft.com -- On-Site Training in C/C++, Java, Perl & Unix
C++ users: Download BD Software's free STL Error Message
Decryptor at www.bdsoft.com/tools/stlfilt.html
Jul 22 '05 #2
<- Chameleon -> wrote:
I have a preprocessor constant (SUPPORT_PNG_IM AGE) with 3 states, to control the compilation:
---------
#undef SUPPORT_PNG_IMA GE
#define SUPPORT_PNG_IMA GE
#define SUPPORT_PNG_IMA GE ONLY
---------
With the 1st & 3rd line the following line works
---------
#if SUPPORT_PNG_IMA GE == ONLY
---------
but with the 2nd, compiler throws:
---------
fatal error C1017: invalid integer constant expression
---------

how can I handle this?
...


I assume that 'ONLY' is not #defined anywhere. Right?

In the first case (when 'SUPPORT_PNG_IM AGE' is not defined) the
preprocessor replaces both 'SUPPORT_PNG_IM AGE' and 'ONLY' with '0',
which means that your '#if' will turn into

#if 0 == 0

In the second case (when 'SUPPORT_PNG_IM AGE' is defined as nothing),
your '#if' will turn into

#if == 0

In the third case after full replacement you'll again end up with

#if 0 == 0

Note, that the second variant is invalid (that's what causes the error).
Not also that the first and the third variant produce the same result.

Maybe you should try to do something like this instead

#define SPI_NONE 0
#define SPI_ONLY 1
#define SPI_ALL 2

then do

#define SUPPORT_PNG_IMA GE SPI_ONLY // or SPI_NONE, or SPI_ALL

and implement the '#if' as follows

#if SUPPORT_PNG_IMA GE == SPI_ONLY
...

or

#if SUPPORT_PNG_IMA GE < SPI_ALL
...

etc.

--
Best regards,
Andrey Tarasevich

Jul 22 '05 #3

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

Similar topics

205
10714
by: Jeremy Siek | last post by:
CALL FOR PAPERS/PARTICIPATION C++, Boost, and the Future of C++ Libraries Workshop at OOPSLA October 24-28, 2004 Vancouver, British Columbia, Canada http://tinyurl.com/4n5pf Submissions
24
40282
by: Nudge | last post by:
I have an array, and an unrolled loop which looks like this: do_something(A); do_something(A); .... do_something(A); I thought: why should I type so much? I should write a macro. So I was looking to write something along the lines of:
16
4504
by: Trying_Harder | last post by:
Is it possible to redefine a macro with global scope after undefining it in a function? If yes, could someone explain how? /If/ my question above isn't very clear you can refer to the following example. eg cosider 2 files sample.c and sample.h sample.h
13
3592
by: seemanta dutta | last post by:
Greetings C gurus, I have used preprocessor directives since a very long time. But whenever I see some professional piece of C code, the linux kernel for example, I get literally confused by the amount of preprocessor directives used in these code. Can anyone please tell me how to actually use these preprocessor directives in a more professional way like selecting particular lines of code suited for some particular hardware etc...
18
3037
by: /* frank */ | last post by:
My teacher said that array in C is managed by preprocessor. Preprocesser replace all array occurences (i.e. int a ) with something that I don't understand/remember well. What's exactly happens with array during preprocessing/compiling stage? Thanks in advance
13
2136
by: Chris Croughton | last post by:
Is the following code standard-compliant, and if so what should it do? And where in the standard defines the behaviour? #include <stdio.h> #define DEF defined XXX int main(void) { int defined = 2;
9
3658
by: Walter Roberson | last post by:
I have run into a peculiarity with SGI's C compiler (7.3.1.2m). I have been reading carefully over the ANSI X3.159-1989 specification, but I cannot seem to find a justification for the behaviour. Could someone point me to the appropriate section, or else confirm the behaviour as a bug? For a particular project, I am using the C preprocessor phase only. I am not using the standalone program 'cpp' because proper functioning of my project...
2
6647
by: Paolo | last post by:
I imported a VC++6.0 project into VC++7.1. The conversion operation makes a mess with Preprocessor Definitions, adding a "$(NoInherit)" for each file. For example: I had a DLL project in VC++6.0 where the definitions were: _UNICODE,_DEBUG,_WIN32_DCOM,WIN32,_WINDOWS,_WINDLL,_AFXDLL,_USRDLL In VC++7.1, these are the preprocessor definitions of the project (right-click the project in Solution Explorer and choose Properties -> C++ ->...
32
2802
by: spibou | last post by:
Is the output of the C preprocessor deterministic ? What I mean by that is , given 2 compilers which conform to the same standard, will their preprocessors produce identical output given as input the same file ? If not then how much variation is allowed ? Is it just a bit more or less white space here and there or could could there be larger differences ? If the output is not deterministic then is it possible that the output of the...
31
2936
by: Sam of California | last post by:
Is it accurate to say that "the preprocessor is just a pass in the parsing of the source file"? I responded to that comment by saying that the preprocessor is not just a pass. It processes statements that the compiler does not process. The good people in the alt.comp.lang.learn.c-c++ newsgroup insist that the preprocessor is just one of many passes. The preprocessor processes a grammer unique to the preprocessor and only that grammer. ...
0
9657
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
10389
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10185
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
10132
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
9006
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
7523
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
6753
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();...
0
5408
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
3
2901
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.