mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-12 00:40:44 +00:00
Merge pull request #415 from LuisAntonRebollo/BitVector_copyConst_fix
Fix BitVector copy constructor.
This commit is contained in:
commit
9d9c6bf7d3
1 changed files with 3 additions and 0 deletions
|
|
@ -158,6 +158,9 @@ inline BitVector::BitVector( U32 sizeInBits )
|
|||
|
||||
inline BitVector::BitVector( const BitVector &r )
|
||||
{
|
||||
mBits = NULL;
|
||||
mByteSize = 0;
|
||||
mSize = 0;
|
||||
copy(r);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue