tutorial3.cpp: In function ‘void sort_even(int, int*)’:
tutorial3.cpp:13:36: error: conversion from ‘std::vector<int>*’ to non-scalar type ‘std::vector<int>’ requested
vector<int> ar = new vector<int>();
^
tutorial3.cpp:20:11: error: ‘class std::vector<int>’ has no member named ‘_Myfirst’
sort(ar._Myfirst(), ar._Mylast());
^
tutorial3.cpp:20:26: error: ‘class std::vector<int>’ has no member named ‘_Mylast’
sort(ar._Myfirst(), ar._Mylast());
^
tutorial3.cpp:22:15: error: ‘Report’ was not declared in this scope
Report(*it);
^