Silence some unused parameter warnings
This commit is contained in:
parent
bd68a4fbb0
commit
f1573ecb03
2 changed files with 3 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue