mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-01 19:37:45 +01:00
Fix C++11ism
This commit is contained in:
parent
9b1a2e6dba
commit
36d2b4ea2e
1 changed files with 2 additions and 2 deletions
|
|
@ -81,8 +81,8 @@ public:
|
|||
float chn_active[17];
|
||||
};
|
||||
|
||||
typedef std::map<std::string, boost::shared_ptr<Port>> Ports;
|
||||
typedef std::list<boost::shared_ptr<Port>> PortList;
|
||||
typedef std::map<std::string, boost::shared_ptr<Port> > Ports;
|
||||
typedef std::list<boost::shared_ptr<Port> > PortList;
|
||||
|
||||
typedef boost::shared_ptr<CircularSampleBuffer> AudioPortScope;
|
||||
typedef std::map<std::string, AudioPortScope> AudioPortScopes;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue