Preparing for Writeup
This commit is contained in:
@@ -32,9 +32,9 @@ namespace Seele
|
||||
Array(Init_t)
|
||||
: arraySize(0)
|
||||
, allocated(0)
|
||||
, _data(nullptr)
|
||||
, beginIt(Iterator(nullptr))
|
||||
, endIt(Iterator(nullptr))
|
||||
, _data(nullptr)
|
||||
{
|
||||
}
|
||||
Array(size_t size, T value = T())
|
||||
@@ -420,7 +420,7 @@ namespace Seele
|
||||
}
|
||||
friend class boost::serialization::access;
|
||||
template<class Archive>
|
||||
void serialize(Archive& ar, const unsigned int version)
|
||||
void serialize(Archive& ar, const unsigned int)
|
||||
{
|
||||
ar & arraySize;
|
||||
resize(arraySize);
|
||||
|
||||
@@ -111,10 +111,10 @@ private:
|
||||
public:
|
||||
Map()
|
||||
: root(nullptr)
|
||||
, _size(0)
|
||||
, iteratorsDirty(false)
|
||||
, beginIt(nullptr)
|
||||
, endIt(nullptr)
|
||||
, iteratorsDirty(false)
|
||||
, _size(0)
|
||||
{
|
||||
}
|
||||
Map(const Map& other)
|
||||
|
||||
Reference in New Issue
Block a user