| 74 | namespace { |
| 75 | |
| 76 | Status ExportingNotImplemented(const DataType& type) { |
| 77 | return Status::NotImplemented("Exporting ", type.ToString(), " array not supported"); |
| 78 | } |
| 79 | |
| 80 | // Allocate exported private data using MemoryPool, |
| 81 | // to allow accounting memory and checking for memory leaks. |
no test coverage detected