* archive.cc (include_member): Destroy Read_symbols_data object before
[deliverable/binutils-gdb.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.117718 seconds and 4 git commands to generate.