Tagged Questions

51
votes
60answers
6k views

What is the worst real-world macros/pre-processor abuse you’ve ever come across?

What is the worst real-world macros/pre-processor abuse you've ever come across (please no contrived IOCCC answers *haha*)? Please add a short snippet or story if it is really ent …
1
vote
2answers
93 views

Given text in a #define, can it somehow be passed to a template?

Say I have a macro, FOO(name), and some template class Bar<> that takes one parameter (what type of parameter is the question). Everytime I call FOO with a different name, I wan …
1
vote
7answers
2k views

Including one C source file in another?

Is it OK (or even recommended/good practice) to #include .c file in another .c file? What happens when they are included in a project file?
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 …
8
votes
2answers
341 views

Functional programming in C with macro “Higher Order Function” generators

Pay attention carefully because this is a hell of a question ;-) I want to use template functions for generic collection actions (like search, foreach, etc.) in C while maintainin …
4
votes
9answers
411 views

How do I mark code with side effects?

I'm working on a project on an 8051 where every byte counts. As such, I am using some global variables where I normally wouldn't. The normal method of passing pointers into a fun …
4
votes
5answers
604 views

Variadic recursive preprocessor macros - is it possible?

I've run into a little theoretical problem. In a piece of code I'm maintaining there's a set of macros like #define MAX_OF_2(a, b) (a) > (b) ? (a) : (b) #define MAX_OF_3( …