a55ce7febf
ODR violations, add test case.
12 lines
200 B
C++
12 lines
200 B
C++
#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());
|
|
}
|