1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-04 15:26:00 +02:00

Expansion to const equality checks

This commit is contained in:
Brian Fiete 2020-02-29 07:35:17 -08:00
parent a43d4e8bd9
commit 6512841cf1
3 changed files with 61 additions and 3 deletions

View file

@ -108,6 +108,7 @@ public:
T& operator[](int idx) const
{
BF_ASSERT((uint)idx < (uint)mSize);
return mVals[idx];
}