More standard reference to auto_ptr.

This commit is contained in:
Stephen Williams 2010-11-24 08:02:50 -08:00
parent da18ba6e4e
commit 8aa2ba8339
1 changed files with 3 additions and 2 deletions

View File

@ -27,6 +27,7 @@
# include <iostream>
# include <list>
# include <map>
# include <memory>
/*
* parse-form types.
@ -64,8 +65,8 @@ struct name_component_t {
struct enum_type_t {
ivl_variable_type_t base_type;
bool signed_flag;
auto_ptr< list<PExpr*> > range;
auto_ptr< list<named_pexpr_t> > names;
std::auto_ptr< list<PExpr*> > range;
std::auto_ptr< list<named_pexpr_t> > names;
};