Skip to content

Commit

Permalink
Fix shadow warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 committed May 30, 2024
1 parent 7228231 commit 760ca15
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/chowdsp_wdf/wdft/wdft_one_ports.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ namespace wdft
public:
/** Creates a new WDF Capacitor.
* @param value: Capacitance value in Farads
* @param fs: WDF sample rate
* @param _fs: WDF sample rate
*/
explicit CapacitorT (T value, T fs = (T) 48000.0) : C_value (value),
fs (fs)
explicit CapacitorT (T value, T _fs = (T) 48000.0) : C_value (value),
fs (_fs)
{
calcImpedance();
}
Expand Down

0 comments on commit 760ca15

Please sign in to comment.