Е
Size: a a a
Е
IZ
IZ
WC
IZ
int m_var = ...
int this -> m_var = ...
AP
IZ
IZ
hh
hh
AP
IZ
MyClass&
(const MyClass&
для второго).AP
hh
Е
hh
std::vector<char> piece_data = this->storage[piece_idx];
// init vector of piece_size size
if (piece_data.empty()) {
std::cout << "Allocating vector of size " << this->piece_size << " for piece " << piece_idx << std::endl;
piece_data.resize(this->piece_size);
}
C
std::vector<char> piece_data = this->storage[piece_idx];
// init vector of piece_size size
if (piece_data.empty()) {
std::cout << "Allocating vector of size " << this->piece_size << " for piece " << piece_idx << std::endl;
piece_data.resize(this->piece_size);
}
LA
IZ
hh