| 193 | } |
| 194 | |
| 195 | void Array::Resize(SizeType newSize) |
| 196 | { |
| 197 | ObjectLock olock(this); |
| 198 | |
| 199 | if (m_Frozen) |
| 200 | BOOST_THROW_EXCEPTION(std::invalid_argument("Array must not be modified.")); |
| 201 | |
| 202 | m_Data.resize(newSize); |
| 203 | } |
| 204 | |
| 205 | void Array::Clear() |
| 206 | { |
no outgoing calls
no test coverage detected