void put(int v){ arr ~= v; }

should be

void put(T v){ *arr ~= v; }

Reply via email to