Tagged Questions
Refers to a compiler error for multiple declarations of a variable, function, or class in the same program or project. Often meant to be the same, the programmer just accidentally re-initializes the object.
17
votes
4answers
439 views
c & c++ default global variable linkage, multiple declaration & definition problem
For example:
code1.c / .cpp
int a;
// ... and so on
code2.c / .cpp
int a;
int main(void) {
return 0;
}
go to compile:
$gcc code1.c code2.c # this is fine
$
$g++ code1.cpp code2.cpp ...
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
2answers
339 views
gcc: Linking C library in a C++ app results in “multiple definition of” errors
I have a working C library which I want to link to a C++ application using gcc but the linker (g++) is giving me the "multiple definition" error. With a C application and gcc it works.
The headers ...
3
votes
5answers
368 views
Header-only libraries and multiple definition errors
I want to write a library that to use, you only need to include one header file. However, if you have multiple source files and include the header in both, you'll get multiple definition errors, ...
2
votes
1answer
71 views
“Multiple Definition Of” Error. What am I doing wrong?
I have the following class:
class Character
{
public:
Character();
Character(std::string char_name, Race char_race, Gender char_gender);
~Character();
int get_id() { return ...
2
votes
1answer
5k views
Multiple definition of inline functions when linking static libs
I have a C++ program that I compile with mingw (gcc for Windows). Using the TDM release of mingw which includes gcc 4.4.1. The executable links to two static library (.a) files: On of them is a ...
2
votes
6answers
12k views
How to prevent multiple definitions in C?
I'm a C newbie and I was just trying to write a console application with Code::Blocks. Here's the (simplified) code:
main.c:
#include <stdio.h>
#include <stdlib.h>
#include "test.c" // ...
1
vote
1answer
15 views
Multiple definitions error: one in my file and one in the moc file.
I have a class called FindAndReplaceBar, whose implementation is this:
#include "FindAndReplaceBar.h"
#include <QLabel>
#include <QPushButton>
#include <QGridLayout>
#include ...
1
vote
4answers
77 views
Multiple definition and header-only librairies
I have a C program with several c and h files. I decided to make one part of the program 'header-only' so I moved the code from c to h. Now I'm getting multiples definition problems and I have no idea ...
1
vote
2answers
80 views
code guards fail and template from string literal
I know the only way to pass a string literal as template argument is to declare it before:
file a.h
#ifndef A_H
#define A_H
#include <string>
char EL[] = "el";
template<char* name>
...
1
vote
1answer
65 views
code guards fail
Take this files:
a.h
#ifndef A_H
#define A_H
char EL[] = "el";
#endif
a.cpp
#include "a.h"
b.h
#ifndef B_H
#define B_H
#include "a.h"
#endif
b.cpp
#include "b.h"
main.cpp
#include ...
1
vote
1answer
236 views
ASP.NET MVC: 'does not contain a definition for' and 3 different errors depending on my changes (please read first sentece of the post)
my question is strictly connected with this one ASP.NET MVC View throwing CS1061 error related to type of model object passed as ViewDdata to a view , but my reputation is to small to add a comment ...
1
vote
4answers
362 views
Multiply defined linker error using inlined functions
The linker is reporting multiply defined errors for an inline function.
I have the following code in a header file:
struct Port_Pin
{
volatile uint32_t * port_addr_set_value; //!< ...
1
vote
3answers
569 views
C++ multiple definition error
Starting with sth's answer to this question:
http://stackoverflow.com/questions/3023760/c-template-specialization
I was wondering how to resolve multiple definition errors if the following code
is ...
0
votes
1answer
47 views
Strange multiple definitions error with headers
I have a strange multiple definitions error in my project.
I'm using the #ifndef preprocessor command to avoid including the same file multiple times. I cleared all other code. Here are my simplified ...
0
votes
2answers
55 views
problem with “multiple definition”
Say I have a very little header file like so:
#ifndef A_H_
#define A_H_
void print();
int getInt()
{ //ERROR HERE
return 5;
}
#endif /* A_H_ */
And a source file implementing print like so:
...
0
votes
3answers
690 views
C++: Multiple definition error for global functions in the header file
This function is global and is defined in the header file (temporarily I want to keep it there).
The header file also constitutes a particular class which has inline functions and one of those ...
0
votes
1answer
103 views
Linking statically against pion network library
I am trying to link pion network library 4.0.3 in my application. I tried to simply compile pion::netlib in RELEASE_STATIC mode - which worked. However, when I linked against it in my application I ...
0
votes
0answers
211 views
Error running app : 'xxx multiply defined'
What should one do to build blackberry apps for different OS versions? I've seen strange behavior when the same app runs well at 9700 OS 5.0, 9800 6.0 but gives an error at 9700 OS 6.0:
Error ...
0
votes
4answers
436 views
multiple definition error for static const class members
I recently ran into the problem described in Weird undefined symbols of static constants inside a struct/class and I am trying to bring my code into compliance by adding definitions to the ...
0
votes
2answers
754 views
C++ Qt Multiple Definitions
I'm trying to create a simple GUI application (so far) in Qt with C++ using the MinGW compiler. However, the compiler is informing me that I have a multiple definition of ...
0
votes
1answer
408 views
multiple definition linker error after adding a function to a previously linking file
So my program is working fine. Compiling, linking, running, the works. Then, I decide to add a simple function to one of my files, like this:
#ifndef UTILITY_HPP
#define UTILITY_HPP
/* #includes ...
0
votes
3answers
986 views
Multiple definition of lots of std:: functions when linking
I am trying to integrate some external code into my application. My code was pure C, but the new code is C++, so I simply renamed my C files to .cc and compiled the whole thing with g++.
It compiles ...
0
votes
4answers
559 views
vector multiple definition link errors
vector is included in only one source file. The only stl include in the header files is string. Yet I cannot get rid of multiple definition errors (example below). Any ideas?
...
0
votes
2answers
38 views
Link errorLNK2005 in VC++
I have a programme I which I want to implement button class. I have declared all my variable in button.h and defined all methods in button.cpp and I am calling these functions in WINMAIN the following ...
-1
votes
1answer
58 views
a multiple definition error in c++
I have 2 files, grabURL.cpp and grabURL.hpp. When I compile the both with gcc it gives me multiple definitions errors.
grabURL.cpp
#include "grabURL.hpp"
size_t buffer(void *ptr, size_t size, size_t ...
-1
votes
2answers
63 views
multiple definition of `something'
In "my_header.h" I defined
FILE *f;
char *logfile = "my_output.txt";
#define OPEN_LOG f = fopen(logfile, "a")
#define CLOSE_LOG fclose(f)
and in "my_source.c", I used it in this way
...