[AFV] Fixed GCC and Clang errors

This commit is contained in:
Mat Sutcliffe
2019-10-04 18:37:24 +01:00
parent 641238116a
commit b90855d393
3 changed files with 5 additions and 2 deletions

View File

@@ -20,6 +20,10 @@
#include <QBuffer>
#include <QtDebug>
#ifndef crypto_aead_chacha20poly1305_IETF_ABYTES
#define crypto_aead_chacha20poly1305_IETF_ABYTES 16U
#endif
namespace BlackCore
{
namespace Afv

View File

@@ -32,7 +32,6 @@
using namespace BlackMisc;
using namespace BlackMisc::PhysicalQuantities;
using namespace BlackMisc::Audio;
using namespace BlackMisc::Aviation;
using namespace BlackMisc::Network;

View File

@@ -40,7 +40,7 @@ namespace BlackSound
private:
QRandomGenerator random;
std::array<double, 7> pinkNoiseBuffer = {0};
std::array<double, 7> pinkNoiseBuffer = {{0}};
double m_gain = 0.0;
};
}