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
commit 0f326c6067
4 changed files with 8 additions and 5 deletions

View file

@ -52,5 +52,5 @@ private:
static constexpr int MAX_LOG_LINES = 5000;
std::mutex m_log_mutex;
FixedSizeQueue<LogEntry, MAX_LOG_LINES> m_log_ring_buffer;
Common::FixedSizeQueue<LogEntry, MAX_LOG_LINES> m_log_ring_buffer;
};