1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

Span default ctor fix

This commit is contained in:
Brian Fiete 2021-12-03 05:58:57 -08:00
parent 15003d5f6a
commit b2e9a83ac2

View file

@ -47,7 +47,8 @@ public:
Span() Span()
{ {
mVals = NULL;
mSize = 0;
} }
Span(T* mPtr, intptr size) Span(T* mPtr, intptr size)