mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-13 04:52:06 +00:00
Common: Move FixedSizeQueue into Common namespace
Gets this out of the global namespace.
This commit is contained in:
parent
4ae4a28465
commit
0f326c6067
4 changed files with 8 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue