mirror of
https://github.com/alexkay/spek.git
synced 2025-05-14 21:46:32 +03:00
Fix a warning
This commit is contained in:
parent
74800f14b3
commit
0e78642990
@ -35,7 +35,7 @@ class FFTPlan
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
FFTPlan(int nbits) :
|
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) {}
|
input(input_size), output(output_size) {}
|
||||||
virtual ~FFTPlan() {}
|
virtual ~FFTPlan() {}
|
||||||
|
|
||||||
@ -52,7 +52,6 @@ protected:
|
|||||||
float *get_input() { return this->input.data(); }
|
float *get_input() { return this->input.data(); }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
int nbits;
|
|
||||||
int input_size;
|
int input_size;
|
||||||
int output_size;
|
int output_size;
|
||||||
std::vector<float> input;
|
std::vector<float> input;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user