blob: 09940d4fb434211b70cdfdfc94167a0727b83a07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#include <algorithm>
class Ordering {
public:
bool operator()(int a, int b) {
// We need the "+ 1" here to force this operator() to be a
// different size than the one in odr_violation1.cc.
return a + 1 > b + 1;
}
};
void SortDescending(int array[], int size) {
std::sort(array, array + size, Ordering());
}
// This is weak in odr_violation1.cc.
extern "C" int OverriddenCFunction(int i) {
return i * i;
}
// This is inline in debug_msg.cc, which makes it a weak symbol too.
int SometimesInlineFunction(int i) {
return i * i;
}
|