| 51 | { |
| 52 | public: |
| 53 | static PaddedString load(std::string_view filename) |
| 54 | { |
| 55 | PaddedString ret; |
| 56 | FileUtils::getInstance()->getContents(filename, &ret); |
| 57 | return ret; |
| 58 | } |
| 59 | |
| 60 | PaddedString() = default; |
| 61 | ~PaddedString() { delete[] data_ptr; } |
nothing calls this directly
no test coverage detected