Tagged Questions

7
votes
6answers
194 views

Best practice for dependencies on #defines?

Is there a best practice for supporting dependencies on C/C++ preprocessor flags like -DCOMPILE_WITHOUT_FOO? Here's my problem: > setenv COMPILE_WITHOUT_FOO > make <Make system reads ...
5
votes
5answers
679 views

Is it better to use `#ifdef` or inheritance for cross-compiling?

To follow from my previous question about virtual and multiple inheritance (in a cross platform scenario) - after reading some answers, it has occurred to me that I could simplify my model by keeping ...
5
votes
3answers
2k views

booleans inside #ifdef statements?

In C++, is this: #ifdef COND_A && COND_B the same as: #if defined(COND_A) && defined(COND_B) ? I was thinking it wasn't, but I haven't been able to find a difference with my ...
3
votes
8answers
289 views

What is the best way to only include certain libraries on certain operating systems in c/c++?

When writing an app that one wants to have compile on mac, linux and windows, what is the best way of managing the different libraries that will need to be included on the various operating systems. ...
2
votes
3answers
110 views

Why do I get compilation errors after I conditionally include stdafx.h?

I'm trying to write a program that compiles in Borland C++ and Visual C++. To do this, I add #ifdef _MSC_VER to include the stdafx.h file when the source is compiled under VS. The code compiles and ...
1
vote
5answers
70 views

Problems with ifdef based inheritance in C++

I was looking at the code of some class I was using, and I came across code like this: #ifdef SOME_OBSCURE_CONDITION class A { #elif class A : public B { #endif Can there be any problems with such ...
1
vote
1answer
203 views

Can I query the compiler about C++0x “alignas” support?

I'm writing a few classes and structs that could benefit from 16-byte alignment. Instead of using compiler-specific hacks, I'd rather use the new C++0x alignas functionality for future portability. ...
1
vote
2answers
821 views

c++ #ifdef Mac OS X question

I am fairly new to C++. I am currently working on a group project and we want to make our classes compatible with both the lab computers (Windows) and my computer (Mac OS X). Here is what we have ...
1
vote
1answer
90 views

Is #endif GUARD_H good practice?

Consider this: #ifndef GUARD_H #define GUARD_H ... #endif GUARD_H rather than: #ifndef GUARD_H #define GUARD_H ... #endif // GUARD_H Often I see at the #endif an 'identifier' commented out but ...
0
votes
3answers
208 views

#pragma once vs. include guards [closed]

Possible Duplicate: #pragma once vs include guards? I understand what the function/behavioral differences are between: #pragma once blah ...and... #ifndef #define blah #endif But what ...
0
votes
1answer
180 views

What does #ifdef 1 in C++

in C++, I know that programmers use #ifdef 0 to block out code from running, but in this same project I see a lot of #ifdef 1. Does this mean that the code always runs? Unfortunately the code does not ...
0
votes
2answers
922 views

Visual Studio incorrectly marking inactive code blocks when using `#ifdef`

My project has a bunch of #ifdefs. The macros used by these #ifdefs are usually passed through the command line using the '/D' option to get different build configurations. Visual studio incorrectly ...