Common: Move FixedSizeQueue into Common namespace

Gets this out of the global namespace.
This commit is contained in:
Lioncash
2023-03-22 01:21:33 -04:00
parent 4ae4a28465
commit 0f326c6067
4 changed files with 8 additions and 5 deletions

View File

@ -29,7 +29,7 @@ private:
std::unique_ptr<DPL2FSDecoder> m_fsdecoder;
std::array<float, 32768> m_float_conversion_buffer;
FixedSizeQueue<float, 32768> m_decoded_fifo;
Common::FixedSizeQueue<float, 32768> m_decoded_fifo;
};
} // namespace AudioCommon