mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
Fix BitVector copy constructor.
Initialize all member variables.
This commit is contained in:
parent
95ef5ec226
commit
b700572931
|
|
@ -158,6 +158,9 @@ inline BitVector::BitVector( U32 sizeInBits )
|
|||
|
||||
inline BitVector::BitVector( const BitVector &r )
|
||||
{
|
||||
mBits = NULL;
|
||||
mByteSize = 0;
|
||||
mSize = 0;
|
||||
copy(r);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue