mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-23 17:30:17 +01:00
Make a large number of global variables static so they only have file scope when that is all they need. Part of a patch by Campbell Barton
This commit is contained in:
@@ -46,8 +46,8 @@
|
||||
|
||||
#include "FFT.h"
|
||||
|
||||
int **gFFTBitTable = NULL;
|
||||
const int MaxFastBits = 16;
|
||||
static int **gFFTBitTable = NULL;
|
||||
static const int MaxFastBits = 16;
|
||||
|
||||
/* Declare Static functions */
|
||||
static int IsPowerOfTwo(int x);
|
||||
|
||||
Reference in New Issue
Block a user