| 69 | } |
| 70 | |
| 71 | void WriteToFile(const Unit &U, const std::string &Path) { |
| 72 | WriteToFile(U.data(), U.size(), Path); |
| 73 | } |
| 74 | |
| 75 | void WriteToFile(const std::string &Data, const std::string &Path) { |
| 76 | WriteToFile(reinterpret_cast<const uint8_t *>(Data.c_str()), Data.size(), |
no test coverage detected