Eliminate use of boost::shared_ptr

This commit is contained in:
Jason Turner
2011-09-10 07:24:46 -06:00
parent afa96ecbf9
commit e2da56f199
5 changed files with 6 additions and 6 deletions

View File

@@ -102,7 +102,7 @@ namespace chaiscript
/// \brief Struct that doubles as both a parser ast_node and an AST node.
struct AST_Node : boost::enable_shared_from_this<AST_Node> {
struct AST_Node : std::enable_shared_from_this<AST_Node> {
public:
const std::string text;
const int identifier;