mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-03 20:29:35 +01:00
Fix another C++11ism
This commit is contained in:
parent
2cf4568d82
commit
a829fa58b3
1 changed files with 7 additions and 6 deletions
|
|
@ -67,6 +67,13 @@ struct midipair {
|
|||
string trname;
|
||||
};
|
||||
|
||||
struct PlaylistState {
|
||||
PlaylistState () : before (0) {}
|
||||
|
||||
boost::shared_ptr<Playlist> playlist;
|
||||
XMLNode* before;
|
||||
};
|
||||
|
||||
bool
|
||||
Session::import_sndfile_as_region (string path, SrcQuality quality, samplepos_t& pos, SourceList& sources, ImportStatus& status, uint32_t current, uint32_t total)
|
||||
{
|
||||
|
|
@ -283,12 +290,6 @@ Session::import_pt_rest (PTFFormat& ptf)
|
|||
struct ptflookup utr;
|
||||
vector<midipair> uniquetr;
|
||||
|
||||
struct PlaylistState {
|
||||
PlaylistState () : before (0) {}
|
||||
|
||||
boost::shared_ptr<Playlist> playlist;
|
||||
XMLNode* before;
|
||||
};
|
||||
vector<PlaylistState> playlists;
|
||||
vector<PlaylistState>::iterator pl;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue