Skip to content

Commit

Permalink
Merge pull request #1405 from srcejon/fix_cpp17_win
Browse files Browse the repository at this point in the history
Fix c++17 compilation with MSVC
  • Loading branch information
f4exb authored Sep 8, 2022
2 parents 1837763 + 910f1bc commit cf7d2b8
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions plugins/channeltx/moddatv/dvb-s2/DVB2.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -151,7 +148,7 @@ class DVB2{
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];
Expand Down

0 comments on commit cf7d2b8

Please sign in to comment.