| 138 | T Exemplar; |
| 139 | |
| 140 | void Initialize() |
| 141 | { |
| 142 | this->Internal.resize(this->GetNumberOfThreads()); |
| 143 | this->Initialized.resize(this->GetNumberOfThreads()); |
| 144 | std::fill(this->Initialized.begin(), this->Initialized.end(), false); |
| 145 | } |
| 146 | |
| 147 | int GetNumberOfThreads() { return 1; } |
| 148 |
nothing calls this directly
no test coverage detected