Skip to content

Commit

Permalink
macos x ; update version
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Sep 11, 2018
1 parent 30a7e6a commit a0dda26
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Expand Up @@ -26,8 +26,8 @@ cmake_policy(SET CMP0025 NEW)
set(SCORE_VERSION_MAJOR 2)
set(SCORE_VERSION_MINOR 0)
set(SCORE_VERSION_PATCH 0)
set(SCORE_VERSION_EXTRA a16)
set(SCORE_CODENAME "Bibliothèque en cue-néiforme")
set(SCORE_VERSION_EXTRA 17)
set(SCORE_CODENAME "Tranquillou bibliou")
set(SCORE_VERSION "${SCORE_VERSION_MAJOR}.${SCORE_VERSION_MINOR}.${SCORE_VERSION_PATCH}-${SCORE_VERSION_EXTRA}")

enable_testing()
Expand Down
Expand Up @@ -87,7 +87,7 @@ EffectProcessFactory_T<Media::VST::VSTEffectModel>::descriptor(QString d) const
for(int i = 0; i < it->controls; i++) inlets.push_back(Process::PortType::Message);
desc.inlets = std::move(inlets);

desc.outlets = {Process::PortType::Audio};
desc.outlets = {std::vector<Process::PortType>{Process::PortType::Audio}};
}
else
{
Expand All @@ -97,7 +97,7 @@ EffectProcessFactory_T<Media::VST::VSTEffectModel>::descriptor(QString d) const
for(int i = 0; i < it->controls; i++) inlets.push_back(Process::PortType::Message);
desc.inlets = std::move(inlets);

desc.outlets = {Process::PortType::Audio};
desc.outlets = {std::vector<Process::PortType>{Process::PortType::Audio}};
}
}
return desc;
Expand Down

0 comments on commit a0dda26

Please sign in to comment.