mirror of
https://github.com/alexkay/spek.git
synced 2025-04-20 18:37:36 +03:00
Fix a warning
This commit is contained in:
parent
d0ab6fed36
commit
d933d865b8
@ -35,7 +35,7 @@ class FFTPlan
|
||||
{
|
||||
public:
|
||||
FFTPlan(int nbits) :
|
||||
nbits(nbits), input_size(1 << nbits), output_size((1 << (nbits - 1)) + 1),
|
||||
input_size(1 << nbits), output_size((1 << (nbits - 1)) + 1),
|
||||
input(input_size), output(output_size) {}
|
||||
virtual ~FFTPlan() {}
|
||||
|
||||
@ -52,7 +52,6 @@ protected:
|
||||
float *get_input() { return this->input.data(); }
|
||||
|
||||
private:
|
||||
int nbits;
|
||||
int input_size;
|
||||
int output_size;
|
||||
std::vector<float> input;
|
||||
|
Loading…
x
Reference in New Issue
Block a user