mirror of
https://github.com/ggerganov/ggwave.git
synced 2026-02-07 01:11:22 +08:00
ggwave : remove <chrono> and <memory> headers
This commit is contained in:
@@ -303,7 +303,6 @@ extern "C" {
|
||||
#include <functional>
|
||||
#include <vector>
|
||||
#include <map>
|
||||
#include <memory>
|
||||
|
||||
class GGWave {
|
||||
public:
|
||||
@@ -590,12 +589,12 @@ private:
|
||||
|
||||
// Impl
|
||||
struct Rx;
|
||||
std::unique_ptr<Rx> m_rx;
|
||||
Rx * m_rx;
|
||||
|
||||
struct Tx;
|
||||
std::unique_ptr<Tx> m_tx;
|
||||
Tx * m_tx;
|
||||
|
||||
std::unique_ptr<Resampler> m_resampler;
|
||||
Resampler * m_resampler;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user