1
vote
4answers
63 views

Is there a way to both check a macro is defined and it equals a certain value at the same time

I regularly use object-like preprocessor macros as boolean flags in C code to turn on and off sections of code. For example #define DEBUG_PRINT 1 And then use it like #if(DEBUG_PRINT == 1) ...
3
votes
4answers
82 views

How do I write a recursive for-loop “repeat” macro to generate C code with the CPP preprocessor?

I want to force the preprocessor to do some automatic code generation for me. I don't need much: just a simple for-loop that contains another for-loop.[1] I've read all that I can about macro ...
3
votes
3answers
75 views

c++ #define variable parameter function

I have a CPU sensitive application and want to minimize function calls. I want to write something like: #ifdef condition #define f(a,b) ff(a,b) #define f(a) ff(a) #endif ...
1
vote
2answers
48 views

Is there a way to use a preprocessor macro inside of another function-like macro?

I found a neat Clang-specific feature that lets you know if a header exists before actually including it (__has_include). I was trying to come up with my own macro to do something like the following: ...
1
vote
1answer
54 views

Can I use Visual Studio debugger within #define functions?

I am using Visual Studio 2010 (writing C++) and have isolated an exception coming from a call to a #define function. The defined function is a bit complex and I would like to be able to step through ...
2
votes
2answers
36 views

Strange syntax error C2143 in Visual only (missing ';' before 'type')

I'm getting a strange compilation error for a C code in MSVC only. More precisely : error C2143: syntax error : missing ';' before 'type' C2143 is a fairly generic error, and there are myriad of ...
8
votes
3answers
125 views

Why can't we use the preprocessor to create custom-delimeted strings?

I was playing around a bit with the C preprocessor, when something which seemed so simple failed: #define STR_START " #define STR_END " int puts(const char *); int main() { puts(STR_START hello ...
0
votes
1answer
61 views

In C, is there a better way to calculate uncertainty values?

What I've been doing is using a #define UNC (uncertainty) to toggle on and off the functionality for calculating x (the value) and dx (the uncertainty). It works pretty well, but it's not easy to read ...
7
votes
5answers
253 views

what's this C++ macro meaning?

I can't figure out what this macro means: #define DECLARE_HANDLE(n) typedef struct n##__{int i;}*n DECLARE_HANDLE(HWND); I have learned from The C Program that "##" meaning connect the ...
1
vote
1answer
27 views

Solaris and Preprocessor Macros

Would someone post the results of cpp -dM < /dev/null from a Solaris 10 or above system? I'm having trouble locating what preprocessor macros are typically defined. Solaris documentation does not ...
0
votes
2answers
51 views

Generate a string based upon a class template's typename?

What I'd like to be able to do... I have a templated class which sets up a (named) shared memory pool based upon the type of object passed as the type parameter. I was wondering if, possibly through ...
2
votes
2answers
77 views

How to use the #error directive - C++

I'm creating a self initializing arrays class in C++ and i'm wondering how i'd throw an error not an exception if a user were to try and allocate more than 0x7fffffff bytes. Similar to where: error ...
2
votes
2answers
58 views

C macro: concatenate symbols conditonally

I have #define A_T 1 #define B_T 2 int x_a = 1, x_b =2; How can I define a macro, which can concatenate the suffix _a and _b to the var name? for example, something like this #define A_T_SUF _a ...
2
votes
1answer
88 views

Macro overloading

Is it possible to define something like this: #define FOO(x, y) BAR() #define FOO(x, sth, y) BAR(sth) so that this: FOO("daf", sfdas); FOO("fdsfs", something, 5); is translated to this: BAR(); ...
1
vote
1answer
57 views

C macro gives compile time error

I want to use macro to expand a function. So I wrote the following code: #define INIT ( T ) \ struct T * init##T() { \ struct T * obj = ( struct T *)malloc( sizeof (struct T )); \ return ...
1
vote
0answers
63 views

Preprocessor target checking

I wanna use preprocessor commands to test which target i'm compiling for. Every egs i read told to do that : -Add a preprocessor macro in my target. -Do this : #ifdef TARGET_NAME_MACRO ...
2
votes
1answer
98 views

How to pre-compile a C source file without expand the included header file?

I am working on a large project using C language, which has a lot of preprocessor macros: #ifdef/#if. The macros are defined in makefile. In order to get the clean code, I modified the makefile to ...
0
votes
2answers
46 views

Confusing gcc error message in simple macro expansion

I've been looking at this too long and just can't see what the problem is: #include <stdio.h> typedef struct { int a; int b; } S; #define F(a,b) ( v.a = a, v.b = b, v ) int ...
0
votes
2answers
102 views

Macro metaprogramming horror

I am trying to do something like: custommacro x; which would expand into: declareSomething; int x; declareOtherthing; Is this even possible? I already tricked it once with operator= to behave ...
3
votes
2answers
58 views

What does this function like macro mean?

I am a relatively Good c programmer, i love to do research and hate to ask questions, but this particular piece of code is simply troubling please help. It was used with XQueryKeymap, but i don't ...
0
votes
1answer
55 views

Undefine a function-like macro in c?

I am trying to do some hacks over the glibc, and I wanted to know whether it's possible to redefine function-like macros ? For example, <tgmath.h> has the following macro: #define expm1(Val) ...
2
votes
1answer
50 views

Check pre-existence of macro name using a macro

I have coded a header (.h) file with several includes and tens of macros. Before each macro I have coded this: #if defined (MACRO_NAME) #warning "Macro name MACRO_NAME is already in use. Please ...
1
vote
2answers
111 views

Can anybody please explain the behavour of C preprocessor in following examples?

I am implementing a C macro preprocessor (C99)... I am surprised by the following behaviour.... Ex1: #define PASTE(x) X_##x #define EXPAND(x) PASTE(x) #define TABSIZE 1024 #define BUFSIZE TABSIZE ...
1
vote
2answers
109 views

c++ class factory macro

I would like to make a macro to easily create new Classes that derive from the same base class with different name and slightly different behavior. I already have class FactoryBonusModifier { ...
1
vote
1answer
147 views

Macro substitution fail in GCC 4.7 / Clang 3.2

I've been successfully using some "popular" macros in a Windows 7 + VisualStudio 2012 environment. Last week I wanted to port the project to Linux (no platform dependent code, small codebase). Making ...
2
votes
5answers
163 views

macro without definition in C

What is the use/applicability of macro function without defination: #ifndef __SYSCALL #define __SYSCALL(a, b) #endif One can find this macro in Linux system in header file /usr/include/asm/msr.h I ...
2
votes
2answers
121 views

C++ preprocessor/macro to automatically add lines after function definition

So in C++ I want to make functions that when declared, gets automatically added to a map( or vector, doesn't really matter in this case) as a function pointer and is called later automatically. For ...
0
votes
2answers
102 views

C macro get typeof argument

I am trying to write a macro to assist with object oriented programming in C. As I store the class information in a constant struct, I need to create a macro that does the following: Take the type ...
2
votes
1answer
67 views

C macro adding to a typename

I am trying to create a C macro, that given a typename will append _info to it, take the address of that and a call a function with it. Example code (doesn't work): #define new(X) ...
0
votes
1answer
59 views

C meta macro pattern matching

I have some macros KEY_*. I want to define them all as extern variables, but the number and name may vary. file1.h: #define KEY_FOO 200 ... #define KEY_ASDFG 423 file2.c after preprocessor: ...
1
vote
1answer
128 views

Why can I not declare a variable whose structure has been defined?

This problem might not be so easy to solve as you first think of. FILTER_MESSAGE_HEADER is a structure defined in the header file fltUserStructures.h that is a standard Windows SDK header file ...
0
votes
4answers
86 views

Can you define a function style macro for conditional compilation?

Is it possible to define a macro called IPHONE_ONLY for conditional compilation that looks like this: IPHONE_ONLY -(void)myMethod { //method body } or IPHONE_ONLY( -(void)myMethod { ...
0
votes
0answers
84 views

#define in macro body

I have the following use case #define ConstantDouble( T )\ T( Alert, c_alert ) // I want to generate #define macro's dynamically #define T( x, y ) #define #x y <-- Error ConstantDouble( T ) ...
1
vote
1answer
336 views

MSBuild C++ - command line - can pass defines?

Is there a way to convert something like this: #define ERROR_LOG_LEVEL 5 Into something that msbuild via command line will pass to its projects? msbuild.exe {???}ERROR_LOG_LEVEL=5 target I've ...
1
vote
3answers
465 views

How to test if defined macro is empty at compile time (objective-c / c)?

Is it possible to do check if I've got an empty define? IS_EMPTY_OR_UNDEFINED is a fictive macro I just came up with. #define constantA 0 #define constantB 1 #define constantC null #define constantF ...
6
votes
2answers
178 views

Producing a list of all the preprocessor symbols defined in headers

Say I use some C or C++ library, made out of headers and some source files, that are compiled into a static or shared library I can link with. In the headers of the library (dozens... or hundreds of ...
1
vote
2answers
86 views

C++ Macro - process two pairs of parentheses

I need to preprocess this code: line (0,0) (5,5) where the (0,0) means start x and y coordinate and the second (5,5) means end x and y coordinates. I was able to fetch the start coordinates using ...
0
votes
3answers
113 views

How to replace “template <typename …” with a macro?

With what macro can I replace the "template..." boilerplate with something shorter? ie: instead of these: template <typename NodeDataT, typename ArcDataT> /*constructor*/ GraphDirected:: ...
1
vote
3answers
199 views

Pre-processor directive to concatenate a symbol with a variable value in C

This is how symbol concatenation is done in C #define conc(a,b) a ## b eg: conc(hello,World) will make the symbol helloWorld. What I need to know is a bit different. Say there's a variable n ...
4
votes
2answers
126 views

what is the different between macro and preprocessor directives in C++ [duplicate]

Possible Duplicate: Difference between macro and preprocessor I have a question about macro and preprocessor directives in C++, what is the difference between them? seems like they are more ...
0
votes
5answers
191 views

How to define a macro that defines a function that calls itself?

I want to make a macro that will define a function that calls that function on a list of objects. It doesn't necessarily have to be a preprocessor macro, but it should work. I want to write something ...
4
votes
6answers
452 views

Why preprocessor macros are evil and what is the real alternative ? - C++11

I have always asked this but I have never received a really good answer; I think that almost any programmer before even writing the first "Hello World" had encountered a phrase like "macro should ...
0
votes
1answer
165 views

Share preprocessor macros across c++ and glsl code?

I'm setting up lighting for an openGL program. I'd like to be able to easily tweak the number of lighting sources in C++ without having to touch my shader In my c++ code: #define NUM_LIGHTS 5 ...
0
votes
1answer
123 views

Variadic template counting arguments with ellipsis passed as argument

This question is a follow-on from http://stackoverflow.com/a/5365786/383306. #define _DEFINE_REF_INTERNAL2(id, ...) #define _DEFINE_REF_INTERNAL1(id) #define _VA_NARGS_2_IMPL(_1, _2, N, ...) N ...
6
votes
1answer
126 views

Splitting arguments in c++ preprocessor

Some legacy code I am working on has a macro which returns a comma-separated list intended to be used as function arguments. This is ugly, but the configuration file contains many of these and it ...
1
vote
3answers
136 views

C++ macro expansion to function body

I would like to be able to write a macro CONDITIONALFUNCTION so that CONDITIONALFUNCTION( FunctionName ) { ConditionalExpression() } expands to bool FunctionName( const Arguments& args ) { ...
1
vote
1answer
202 views

scalable automatic class registration in C++

Automatic class registration in C++ is a common task, and a commonly asked question here on StackOverflow: Register an object creator in object factory somehow register my classes in a list ...
1
vote
2answers
92 views

with-open-file macro in C

Is it possible to write a C macro which would take some action before and another action after a code block? int is_locked; #define LOCKED for(is_locked = 1, lock_something(); is_locked; is_locked = ...
7
votes
1answer
140 views

Macro for removing the `restrict` keyword when compiling with C++

I need to include some headers originally written in C in a C++ project. In the header files, the restrict keyword is used, which leads to a syntax error for C++. I am looking for a preprocessor ...
0
votes
1answer
40 views

placemarker and non-placemarker tokens in pre-processor?

C99 standard and having trouble to understand this : c99 - 6.10.3.3 Semantics 3 --- (2nd sentence) Placemarker preprocessing tokens are handled specially: concatenation of two placemarkers ...

1 2 3 4 5 8