| 435 | |
| 436 | private: |
| 437 | void InitializeWithString(StringPiece initial_value) |
| 438 | { |
| 439 | memset(m_words, 0, sizeof(m_words)); |
| 440 | if (!this->ParseFromString(initial_value)) |
| 441 | throw std::runtime_error("Invalid string to initialize bitmap"); |
| 442 | } |
| 443 | |
| 444 | WordType* DoGetWords() |
| 445 | { |
nothing calls this directly
no test coverage detected