diff options
-rw-r--r-- | chilbert/FixBitVec.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chilbert/FixBitVec.hpp b/chilbert/FixBitVec.hpp index ff31f1b..06f3455 100644 --- a/chilbert/FixBitVec.hpp +++ b/chilbert/FixBitVec.hpp @@ -48,16 +48,16 @@ public: CFixBitVec( int iBits = FBV_BITS ) + : m_uiRack{} { - return; } // Copy constructor. CFixBitVec( const CFixBitVec &cFBV ) + : m_uiRack{cFBV.m_uiRack} { - m_uiRack = cFBV.m_uiRack; } // Returns the current size in bits. |