Merge pull request #11682 from lioncash/queue

Common: Move FixedSizeQueue into Common namespace
This commit is contained in:
Admiral H. Curtiss
2023-03-24 12:55:10 +01:00
committed by GitHub
4 changed files with 8 additions and 5 deletions

View File

@ -13,6 +13,8 @@
//
// Not fully featured, no safety checking yet. Add features as needed.
namespace Common
{
template <class T, int N>
class FixedSizeQueue
{
@ -84,3 +86,4 @@ private:
// Sacrifice 4 bytes for a simpler implementation. may optimize away in the future.
int count = 0;
};
} // namespace Common