made gcc happy

This commit is contained in:
Ahmet Inan 2025-07-15 10:24:55 +02:00
commit 78378bb5ac
2 changed files with 4 additions and 0 deletions

View file

@ -4,7 +4,9 @@ OFDM modem decoder
Copyright 2021 Ahmet Inan <inan@aicodix.de> Copyright 2021 Ahmet Inan <inan@aicodix.de>
*/ */
#include <iomanip>
#include <iostream> #include <iostream>
#include <cstdint>
#include <cassert> #include <cassert>
#include <cmath> #include <cmath>
namespace DSP { using std::abs; using std::min; using std::cos; using std::sin; } namespace DSP { using std::abs; using std::min; using std::cos; using std::sin; }

View file

@ -4,7 +4,9 @@ OFDM modem encoder
Copyright 2021 Ahmet Inan <inan@aicodix.de> Copyright 2021 Ahmet Inan <inan@aicodix.de>
*/ */
#include <iomanip>
#include <iostream> #include <iostream>
#include <cstdint>
#include <cassert> #include <cassert>
#include <cmath> #include <cmath>
#include "common.hh" #include "common.hh"