[nostalgia] Add constructors needed by construct_at

This commit is contained in:
2022-04-10 03:04:24 -05:00
parent b5210ff897
commit eac471b21b
2 changed files with 17 additions and 0 deletions

View File

@@ -75,6 +75,10 @@ static ox::Error verifyFile(ox::FileSystem *fs, const ox::String &path, const ox
struct VerificationPair {
ox::String path;
ox::Buffer buff;
VerificationPair(const ox::String &pPath, const ox::Buffer &pBuff) noexcept {
path = pPath;
buff = pBuff;
}
};
static ox::Error copy(ox::FileSystem *src, ox::FileSystem *dest, const ox::String &path) noexcept {