Static cast to int
This commit is contained in:
parent
ea109f7896
commit
dc0040a46b
1 changed files with 1 additions and 1 deletions
|
|
@ -716,7 +716,7 @@ int sfz::Synth::getNumMasters() const noexcept
|
||||||
}
|
}
|
||||||
int sfz::Synth::getNumCurves() const noexcept
|
int sfz::Synth::getNumCurves() const noexcept
|
||||||
{
|
{
|
||||||
return curves.getNumCurves();
|
return static_cast<int>(curves.getNumCurves());
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string sfz::Synth::exportMidnam(absl::string_view model) const
|
std::string sfz::Synth::exportMidnam(absl::string_view model) const
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue