This website works better with JavaScript
Home
Explore
Help
Sign In
beef
/
beefytech.Beef
mirror of
https://github.com/beefytech/Beef
Watch
2
Star
0
Fork
0
Files
Issues
0
Wiki
Browse Source
Span default ctor fix
Brian Fiete
3 years ago
parent
15003d5f6a
commit
b2e9a83ac2
1 changed files
with
2 additions
and
1 deletions
Unified View
Show Diff Stats
2
1
BeefySysLib/Span.h
+ 2
- 1
BeefySysLib/Span.h
View File
@@ -47,7 +47,8 @@ public:
Span()
Span()
{
{
-
+ mVals = NULL;
+ mSize = 0;
}
}
Span(T* mPtr, intptr size)
Span(T* mPtr, intptr size)