Update teakra to fix macos issue; address comment feedbacks

This commit is contained in:
Weiyi Wang 2018-12-08 20:36:04 -05:00
parent e3ac248487
commit 05c372bf6c
7 changed files with 65 additions and 44 deletions

View file

@ -11,7 +11,7 @@ namespace AudioCore {
class DspLle final : public DspInterface {
public:
explicit DspLle(Memory::MemorySystem& memory);
~DspLle();
~DspLle() override;
u16 RecvData(u32 register_number) override;
bool RecvDataIsReady(u32 register_number) const override;
@ -29,7 +29,6 @@ public:
private:
struct Impl;
friend struct Impl;
std::unique_ptr<Impl> impl;
};