Formatting

This commit is contained in:
Jonas Kvinge
2024-06-27 18:00:44 +02:00
parent 6446942e73
commit 93660bfc81
4 changed files with 16 additions and 25 deletions

View File

@@ -26,12 +26,8 @@
namespace {
static const int sBarkBands[] = {
100, 200, 300, 400, 510, 630, 770, 920, 1080, 1270, 1480, 1720,
2000, 2320, 2700, 3150, 3700, 4400, 5300, 6400, 7700, 9500, 12000, 15500
};
static const int sBarkBandCount = arraysize(sBarkBands);
constexpr int sBarkBands[] = { 100, 200, 300, 400, 510, 630, 770, 920, 1080, 1270, 1480, 1720, 2000, 2320, 2700, 3150, 3700, 4400, 5300, 6400, 7700, 9500, 12000, 15500 };
constexpr int sBarkBandCount = arraysize(sBarkBands);
} // namespace