Fix C++11ism

This commit is contained in:
Robin Gareus 2021-01-09 05:18:41 +01:00
parent 9b1a2e6dba
commit 36d2b4ea2e
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -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;