| 117 | typedef char* pointer; |
| 118 | typedef size_t size_type; |
| 119 | void __resize_default_init(size_t size) { |
| 120 | _size = size; |
| 121 | } |
| 122 | char& operator[](int) { |
| 123 | return *reinterpret_cast<char*>(_size); |
| 124 | } |
nothing calls this directly
no outgoing calls
no test coverage detected