]> Git Repo - binutils.git/blame - gold/testsuite/odr_violation1.cc
* README: Rewrite, with some notes on unsupported features.
[binutils.git] / gold / testsuite / odr_violation1.cc
CommitLineData
a55ce7fe
ILT
1#include <algorithm>
2
3class Ordering {
4 public:
5 bool operator()(int a, int b) {
6 return a < b;
7 }
8};
9
10void SortAscending(int array[], int size) {
11 std::sort(array, array + size, Ordering());
12}
This page took 0.071819 seconds and 4 git commands to generate.