-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathA.cc
93 lines (74 loc) · 2.34 KB
/
A.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
//
// Created by Abbas Gussenov on 2/23/22.
//
#include "A.h"
#include <iostream>
// void Foo() { std::cout << "Foo() in A.cc" << std::endl; }
// duplicate symbol 'Foo()' in:
// CMakeFiles/UnnamedNamespaceWithinNamedNamespace.dir/A.cc.o
// CMakeFiles/UnnamedNamespaceWithinNamedNamespace.dir/B.cc.o
// ld: 1 duplicate symbol for architecture x86_64
// Объявление, чтобы можно было вызывать:
namespace {
namespace {
namespace {
void Quuux();
}
}
}
void Bat()
{
// Bar();
// Undefined symbols for architecture x86_64:
// "Bar()", referenced from:
// Bat() in A.cc.o
// Baz() in B.cc.o
// ld: symbol(s) not found for architecture x86_64
// Qux(); // Use of undeclared identifier 'Qux'
Quuux();
}
namespace
{ // An unnamed namespace hide names inside it from different translation units.
void Bar() { std::cout << "Bar() in A.cc" << std::endl; }
void Qux() { std::cout << "Qux() in B.cc" << std::endl; }
namespace
{
void Quux() { std::cout << "Quux() in A.cc" << std::endl; }
namespace
{
void Quuux() { std::cout << "Quuux() in A.cc" << std::endl; }
}
}
}
void Temp()
{
// Bar(); // Call to 'Bar' is ambiguous
Quuux();
}
void Sub()
{
// qwe::Asd();
// Undefined symbols for architecture x86_64:
// "qwe::Asd()", referenced from:
// Sub() in A.cc.o
// ld: symbol(s) not found for architecture x86_64
//
// Объявлено как qwe::Asd(), а определено как qwe::(anonymous namespace)::Asd(),
// поэтому не находит.
qwe::Zxc();
// Объявление qwe::(anonymous namespace)::Zxc() и определение совпадают поэтому ОК.
}
namespace qwe
{
// void DoTheStuff() { std::cout << "DoTheStuff() in A.cc" << std::endl; }
// duplicate symbol 'qwe::DoTheStuff()' in:
// CMakeFiles/UnnamedNamespaceWithinNamedNamespace.dir/A.cc.o
// CMakeFiles/UnnamedNamespaceWithinNamedNamespace.dir/B.cc.o
// ld: 1 duplicate symbol for architecture x86_64
namespace
{ // An unnamed namespace hide names inside it from different translation units.
void Asd() { std::cout << "Asd() in A.cc" << std::endl; }
void Zxc() { std::cout << "Zxc() in A.cc" << std::endl; }
void Aaa() { std::cout << "Aaa() in A.cc" << std::endl; }
}
}