mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Reformat all the things!
This commit is contained in:
@ -51,6 +51,7 @@ public:
|
||||
T& front() { return storage[head]; }
|
||||
const T& front() const { return storage[head]; }
|
||||
size_t size() const { return count; }
|
||||
|
||||
private:
|
||||
std::array<T, N> storage;
|
||||
int head = 0;
|
||||
|
Reference in New Issue
Block a user