| 106 | #endif |
| 107 | |
| 108 | bool LoadFile(fextl::vector<char>& Data, const fextl::string& Filepath, size_t FixedSize) { |
| 109 | return LoadFileImpl(Data, Filepath, FixedSize); |
| 110 | } |
| 111 | |
| 112 | bool LoadFile(fextl::string& Data, const fextl::string& Filepath, size_t FixedSize) { |
| 113 | return LoadFileImpl(Data, Filepath, FixedSize); |
no test coverage detected