ref:7b522d0dad8f0d64dd508e61325124ea9d2ebf30
@@ -55,6 +55,7 @@ struct TGuid
//! Copies an existing guid.
TGuid(const TGuid& other) = default;
+ TGuid& operator=(const TGuid& other) = default;
//! Checks if TGuid is zero.
bool IsEmpty() const;
@@ -1093,7 +1093,8 @@ public:
{
}
- TBitMap(const TBitMap<BitCount, TChunkType>&) = default;
+ TBitMap(const TBitMap&) = default;
+ TBitMap& operator=(const TBitMap&) = default;
template <class T>
TBitMap(const TBitMapOps<T>& bitmap)