1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-12-23 01:55:48 -05:00

Merge pull request #1405 from srcejon/fix_cpp17_win

Fix c++17 compilation with MSVC
This commit is contained in:
Edouard Griffiths 2022-09-08 19:04:53 +02:00 committed by GitHub
commit cf7d2b8332
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,9 +8,6 @@
typedef unsigned int u32;
typedef unsigned char u8;
using namespace std;
// BB HEADER fileds
#define TS_GS_TRANSPORT 3
#define TS_GS_GENERIC_PACKETIZED 0
@ -151,7 +148,7 @@ private:
u8 m_crc_tab[256];
u8 m_dnp; // Deleted null packet
// Transport packet queue
queue <u8> m_tp_q;
std::queue <u8> m_tp_q;
// LDPC tables
const static int ldpc_tab_1_4N[45][13];