URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [binutils-2.20.1/] [gold/] [testsuite/] [odr_violation1.cc] - Rev 277
Go to most recent revision | Compare with Previous | Blame | View Log
#include <algorithm> class Ordering { public: bool operator()(int a, int b) { return a < b; } }; void SortAscending(int array[], int size) { std::sort(array, array + size, Ordering()); }
Go to most recent revision | Compare with Previous | Blame | View Log