13
0

Remove what is IMHO an unnecessarily confusing typedef.

git-svn-id: svn://localhost/ardour2/branches/3.0@10454 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-11-05 02:13:28 +00:00
parent 0770605242
commit 1d2636d76d
2 changed files with 1 additions and 2 deletions

View File

@ -48,7 +48,6 @@ class Route;
class Session;
typedef boost::shared_ptr<GraphNode> node_ptr_t;
typedef boost::shared_ptr<Graph> graph_ptr_t;
typedef std::list< node_ptr_t > node_list_t;
typedef std::set< node_ptr_t > node_set_t;

View File

@ -24,7 +24,7 @@
using namespace ARDOUR;
GraphNode::GraphNode (graph_ptr_t graph)
GraphNode::GraphNode (boost::shared_ptr<Graph> graph)
: _graph(graph)
{
}