mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-07 14:15:46 +01:00
Fix duplicate ‘const’ declaration specifier
This commit is contained in:
parent
23bb15dcf1
commit
b1cf27bed4
1 changed files with 2 additions and 2 deletions
|
|
@ -286,7 +286,7 @@ run_mono(LV2_Handle instance, uint32_t n_samples)
|
|||
float makeup_target = from_dB(*acomp->makeup);
|
||||
float makeup_gain = acomp->makeup_gain;
|
||||
|
||||
const const float tau = acomp->tau;
|
||||
const float tau = acomp->tau;
|
||||
|
||||
if (*acomp->enable <= 0) {
|
||||
ratio = 1.f;
|
||||
|
|
@ -418,7 +418,7 @@ run_stereo(LV2_Handle instance, uint32_t n_samples)
|
|||
float makeup_target = from_dB(*acomp->makeup);
|
||||
float makeup_gain = acomp->makeup_gain;
|
||||
|
||||
const const float tau = acomp->tau;
|
||||
const float tau = acomp->tau;
|
||||
|
||||
if (*acomp->enable <= 0) {
|
||||
ratio = 1.f;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue