Silence some unused parameter warnings

This commit is contained in:
Jean Pierre Cimalando 2021-04-16 02:25:27 +02:00
parent bd68a4fbb0
commit f1573ecb03
2 changed files with 3 additions and 2 deletions

View file

@ -338,7 +338,7 @@ void sfz::Sfizz::enableLogging(const std::string& prefix) noexcept
void sfz::Sfizz::setLoggingPrefix(const std::string& prefix) noexcept
{
(void)prefix;
}
void sfz::Sfizz::disableLogging() noexcept

View file

@ -319,7 +319,8 @@ void sfizz_enable_logging(sfizz_synth_t* synth, const char* prefix)
void sfizz_set_logging_prefix(sfizz_synth_t* synth, const char* prefix)
{
(void)synth;
(void)prefix;
}
void sfizz_disable_logging(sfizz_synth_t* synth)