I'm getting a lot of " redefinition of x....x previously defined here". Please what does this error means?
|
|
The answer to the error for me is weird. It happened ten minutes ago... My editor (for whatever reason) generates tens of copies of the source code in the same .mm (iPhone) source file. The error went away after the duplicated codes are removed. |
||
|
|
|
|
The error means that there is a symbol that has been defined in one place and an alternate definition has been made in another place. This can occur if in cases like:
In this last case there will be a mismatch between the real function and the "implicit declaration" that the compiler assumes when it doesn't have a prototype to use. These situations can be avoided by:
|
||
|
|
|
|
You need to limit each file from being included only once. You can do this in 2 ways. 1) At the top of your header files put:
Or 2) if your compiler doesn't support that, put at the top/end of your header files:
Replace MYFILE with the name of your file, and replace ... with the contents of the header file. |
||||||
|
|
|
You are probably including a header file twice. Make sure your header files are surrounded by http://www.fredosaurus.com/notes-cpp/preprocessor/ifdef.html |
||
|
|
