5
votes
13answers
285 views
Why should one bother with preprocessor directives?
This question may seem rather basic, but coming from an engineering (non computer-science) background, I was unsure about what the snippets of '#'s were in some C++ code.
A quick …
0
votes
4answers
69 views
Check whether function is declared with C preprocessor?
Is it possible to tell the C preprocessor to check whether a function (not a macro) is declared? I tried the following, but it doesn't appear to work:
#include <stdio.h>
in …
3
votes
2answers
150 views
How to include a newline in a C++ macro or how to use C++ templates to do the same ?
I saw the following question:
http://stackoverflow.com/questions/98944/how-to-generate-a-newline-in-a-cpp-macro
Let me give a brief requirement of a need in newline in a C++ prepr …
0
votes
3answers
129 views
#define for unsigned long
Hi,
I'm attempting to use the #define directive to change all of "ulong" to "unsigned long".
Here is an example:
#define ulong unsigned long
ulong idCounter = 0;
Sadly, I think …
1
vote
4answers
797 views
Whats the difference between the WIN32 and _WIN32 defines in c++
I know that WIN32 is obviously to denote win32 compilation but what is the need for _win32?
1
vote
5answers
120 views
How do I write a cpp __DIR__ macro, similar to __FILE__
The __FILE__ and __LINE__ macros are built into the C Pre-Processor, and are often used for printing debug output with file names and line numbers. I need something similar, but wi …
0
votes
1answer
66 views
Preprocessor definitions going haywire. int define redefinition?
I am trying to add a preprocessor definition so that a value is only defined while a certain project is building, then it becomes undefined. I have gone into my project properties …
0
votes
1answer
236 views
#warning directive in VB.net
I know the #warning directive does not exist in vb.net... is there anything like it?
I want to be able to throw messages (warnings) at compiler time.
3
votes
1answer
88 views
What is #nomacros (EP003), and is it alive?
The Evolution WG Issues List of 14 February 2004 has ...
EP003. #nomacros. See EI001. Note by
Stroustrup to be written.
In rough (or exact) terms, what is #nomacros, and is …
0
votes
1answer
150 views
“#if DEBUG” in an ASPX/ASCX page
I want to be able to point to one of 2 assemblies based on what mode (DEBUG or RELEASE) I have selected in my VS2005 IDE. Something like this (which does not work):
<%@ Contro …
2
votes
11answers
2k views
How can I detect the operating system in C/C++?
I would like to detect whether the OS I'm compiling on is Windows. Is there a simple macro I can check to verify that?
2
votes
4answers
755 views
How do I conditionally enable attributes in C#? “#if DEBUG” isn’t working!
The trusty old preprocessor directive in C# appear to work great when I write:
#if DEBUG
...
(Some code)
...
#endif
However, attributes enclosed in the conditional block appear …
7
votes
5answers
412 views
C Preprocessor directives and boolean operators
Hello all, I searched the site but did not find the answer I was looking for so here is a really quick question.
I am trying to do something like that :
#ifdef _WIN32 || _WIN64
…
8
votes
7answers
525 views
When can you omit the file extension in an #include directive?
I'm playing around with gmock and noticed it contains this line:
#include <tuple>
I would have expected tuple.h.
When is it okay to exclude the extension, and does it giv …
2
votes
4answers
95 views
Java - keeping multi-version application from splitting codebase
I am writing an application that will ship in several different versions (initially around 10 variations of the code base will exist, and will need to be maintained). Of course, 98 …
