2 #include "odr_header1.h"
6 bool operator()(int a
, int b
) {
11 void SortAscending(int array
[], int size
) {
12 std::sort(array
, array
+ size
, Ordering());
15 extern "C" int OverriddenCFunction(int i
) __attribute__ ((weak
));
16 extern "C" int OverriddenCFunction(int i
) {
20 // Instantiate the Derived vtable, without optimization.
21 OdrBase
* CreateOdrDerived1() {
22 return new OdrDerived
;
This page took 0.039734 seconds and 4 git commands to generate.