aboutsummaryrefslogtreecommitdiff
path: root/gold/testsuite/odr_violation2.cc
blob: d56927901ddc22220b2d85fa56670b7feb146000 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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());
}