OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [binutils-2.20.1/] [gold/] [testsuite/] [odr_violation2.cc] - Blame information for rev 205

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 205 julius
#include <algorithm>
2
 
3
class Ordering {
4
 public:
5
  bool operator()(int a, int b) {
6
    // We need the "+ 1" here to force this operator() to be a
7
    // different size than the one in odr_violation1.cc.
8
    return a + 1 > b + 1;
9
  }
10
};
11
 
12
void SortDescending(int array[], int size) {
13
  std::sort(array, array + size, Ordering());
14
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.