Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
478 views

Avoiding double inclusion: Preprocessor directive vs. makefiles (C++)

I'm working on moving from frankenstein and one-file thousands-of-lines programs to well structures and organized, multi-file programs. Right now what seems to be natural (naively) is to make a ...
4
votes
9answers
6k views

Repeated Multiple Definition Errors from including same header in multiple cpps

So, no matter what I seem to do, I cannot seem to avoid having Dev C++ spew out numerous Multiple Definition errors as a result of me including the same header file in multiple source code files in ...
3
votes
4answers
6k views

Why aren't my compile guards preventing multiple definition inclusions?

I have a header file x.h which is included by more than one *.c source files. This header file has some structure variables defined. I have put multiple inclusion prevention guard at the beginning ...