The onedefinitionrule tag has no wiki summary.
19
votes
4answers
976 views
Why is multiple definition of a const global variable allowed in C++ and not in C?
Multiple definition of a global variable is not allowed in C or C++ due to the One Definition Rule. However, in C++ a const global variable can be defined in multiple compilation units with no error. ...
17
votes
4answers
493 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 ...
9
votes
2answers
104 views
anonymous namespaces and the one definition rule
Am I violating the One Definition Rule with the following program?
// foo.hpp
#ifndef FOO_HPP_
#define FOO_HPP_
namespace {
inline int foo() {
return 1;
}
}
inline int bar() {
...
8
votes
2answers
180 views
Necessity of forward-declaring template functions
I recently created this example code to illustrate C++11 variadic template function usage.
template <typename Head, typename... Tail> void foo (Head, Tail...);
template <typename... Tail> ...
7
votes
5answers
268 views
A virtual member function is used if it is not pure?
C++03 3.2.2 ...An object or non-overloaded function is used if its name appears in a potentially-evaluated expression. A virtual member function is used if it is not pure...
And then later in 3.2.3 ...
5
votes
1answer
155 views
Can anyone explain this paragraph of the current C++0x standard draft?
Can anyone explain this statement from ISO N3242 §3.2, 2nd point
A non-placement allocation or
deallocation function for a class is
odr-used by the definition of a
constructor of that class. ...
4
votes
2answers
177 views
Can anyone explain this paragraph of the current C++0x standard draft? [closed]
Can anyone explain this statement from ISO N3242 §3.2, 4th point
The added part of n3242 when compare to ISO Standard 2003 :
4 Exactly one definition of a class is required in a translation unit ...
4
votes
2answers
142 views
Can anyone explain this paragraph of the current C++0x standard draft?
Can anyone explain this statement from ISO N3242 §3.2, 2nd point
A member of a set of candidate functions is odr-used if it is selected by
overload resolution when referred to from a ...
3
votes
2answers
51 views
Inline constructors and One Definition Rule
Consider following source files
1.cpp
#include <iostream>
using namespace std;
struct X
{
X()
{
cout << "1" << endl;
}
};
void bar();
void foo()
{
X x;
}
...
3
votes
3answers
89 views
C++: Different classes with the same name in different translation units
Consider the following example:
// usedclass1.hpp
#include <iostream>
class UsedClass
{
public:
UsedClass() { }
void doit() { std::cout << "UsedClass 1 (" << this ...
2
votes
3answers
252 views
Can this be legally be done in C++?
Note: the following code is illegal, but a conforming compiler is not required to reject it (and some don't).
In a library I'm working with I have a template function declaration for Foo and a ...
2
votes
3answers
117 views
One Definition Rule: Can corresponding entities have different names?
I read and reread the relevant clauses about ODR in the C++ standard, but this question still remains open to me. The standard says that the definition of an inline function shall appear in every ...
2
votes
4answers
437 views
Can you please explain this C++ delete problem?
I have the following code:
std::string F()
{
WideString ws = GetMyWideString();
std::string ret;
StringUtils::ConvertWideStringToUTF8(ws, ret);
return ret;
}
WideString is a third-party ...
2
votes
2answers
296 views
How to implement One Definition Rule
This post reference to the One Definition Rule.
Wikipedia is pretty bad on explaining how to implement it
Where can I find good ressources about guidelines to follow in C++ .NET?
0
votes
2answers
156 views
defining integral static const in a class whose .h file is included in multiple cpp files
A.h
class A
{
private:
static const int b = 50;
int c[b];
};
A.cpp
#include "A.h"
const int A::b;
C.cpp
#include "A.h"
The compiler issues me a warning saying b is ...
-1
votes
5answers
81 views
How to specialize a template without specifying a class name?
I want to make a function called debug that outputs some info about objects. My system contains objects of many different types; some of them contain other objects.
using namespace std; // for ...