[ROOT] using vector<> with CINT

From: Martin Turner (martin@hep.ph.liv.ac.uk)
Date: Fri Oct 04 2002 - 20:59:41 MEST


Hello root people.
When wanting to use a template vector with CINT some standard funtions
work and some don't. For example v.clear()  is not in current scope.
How do I obtain the full std library? or do I have to live with it? Or am
I doing something stupid?
 
The following code breaks at v.clear();
Is there an alternative to clear() that will work in a root session?
{
using namespace std;
#include <vector>
 
 std::vector<int> v(0);
 v.reserve(10);
 
 v.push_back(34);
 v.push_back(24);
cout<<"element 3 ="<<v[1]<<endl;
 
 v.clear();
//cout<<"new 3rd element ="<<v[1]<<endl;
 
}
 
Thanks Martin



This archive was generated by hypermail 2b29 : Sat Jan 04 2003 - 23:51:12 MET